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

@ -1,3 +1,12 @@
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.
2006-09-08 Manish Singh <yosh@gimp.org>
* plug-ins/pygimp/pygimp-drawable.c
@ -166,7 +175,7 @@
* app/base/pixel-region.[ch]
* app/base/tile-manager.[ch]
* app/base/tile-swap.[ch]: removed code that tried to swap in
tiles asynchronously (but ended up calling up nothing).
tiles asynchronously (but ended up calling nothing).
2006-09-07 Sven Neumann <sven@gimp.org>

View file

@ -23,6 +23,7 @@
#include <gtk/gtk.h>
#include "libgimpbase/gimpbase.h"
#include "libgimpwidgets/gimpwidgets.h"
#include "dialogs-types.h"

View file

@ -1981,7 +1981,7 @@ prefs_dialog_new (Gimp *gimp,
table = prefs_table_new (1, GTK_CONTAINER (vbox2));
prefs_enum_combo_box_add (object, "space-bar-action", 0, 0,
_("Action bound to the space bar:"),
_("While space bar is pressed:"),
GTK_TABLE (table), 0, size_group);
/* Mouse Pointers */

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 }
};

View file

@ -52,9 +52,9 @@ GType gimp_space_bar_action_get_type (void) G_GNUC_CONST;
typedef enum
{
GIMP_SPACE_BAR_ACTION_NONE, /*< desc="None" >*/
GIMP_SPACE_BAR_ACTION_PAN, /*< desc="Pan" >*/
GIMP_SPACE_BAR_ACTION_MOVE /*< desc="Move" >*/
GIMP_SPACE_BAR_ACTION_NONE, /*< desc="No action" >*/
GIMP_SPACE_BAR_ACTION_PAN, /*< desc="Pan view" >*/
GIMP_SPACE_BAR_ACTION_MOVE /*< desc="Switch to Move tool" >*/
} GimpSpaceBarAction;