added missing include.

2006-09-09  Sven Neumann  <sven@gimp.org>

	* app/dialogs/about-dialog.c: added missing include.

	* app/display/display-enums.[ch]
	* app/dialogs/preferences-dialog.c: changed labels for
	"space-bar-action" preference. Suggestions welcome for further
	improvements.
This commit is contained in:
Sven Neumann
2006-09-09 00:36:23 +00:00
committed by Sven Neumann
parent c46a34fdf0
commit beb9cae497
5 changed files with 18 additions and 8 deletions

View File

@ -83,9 +83,9 @@ gimp_space_bar_action_get_type (void)
static const GimpEnumDesc descs[] =
{
{ GIMP_SPACE_BAR_ACTION_NONE, N_("None"), NULL },
{ GIMP_SPACE_BAR_ACTION_PAN, N_("Pan"), NULL },
{ GIMP_SPACE_BAR_ACTION_MOVE, N_("Move"), NULL },
{ GIMP_SPACE_BAR_ACTION_NONE, N_("No action"), NULL },
{ GIMP_SPACE_BAR_ACTION_PAN, N_("Pan view"), NULL },
{ GIMP_SPACE_BAR_ACTION_MOVE, N_("Switch to Move tool"), NULL },
{ 0, NULL, NULL }
};