aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog20
-rw-r--r--lib/egg/egg-accel-dialog.c2
-rw-r--r--lib/egg/egg-action.c2
-rw-r--r--lib/egg/egg-menu-merge.c2
-rw-r--r--lib/egg/egg-radio-action.c2
-rw-r--r--lib/egg/egg-toggle-action.c2
-rw-r--r--lib/egg/eggtoolbar.c2
-rw-r--r--lib/egg/eggtoolbutton.c2
-rw-r--r--lib/egg/eggtoolitem.c2
-rw-r--r--lib/widgets/ephy-ellipsizing-label.h2
-rw-r--r--lib/widgets/ephy-spinner.h2
-rw-r--r--src/bookmarks/ephy-bookmark-action.c2
-rw-r--r--src/ephy-favicon-action.c2
-rw-r--r--src/ephy-location-action.c2
-rw-r--r--src/ephy-navigation-action.c2
-rw-r--r--src/ephy-spinner-action.c2
16 files changed, 35 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index a68d69aa4..d2e30515b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,23 @@
+2003-02-08 Christian Meyer <chrisime@gnome.org>
+
+ * lib/egg/egg-accel-dialog.c:
+ * lib/egg/egg-action.c:
+ * lib/egg/egg-menu-merge.c:
+ * lib/egg/egg-radio-action.c:
+ * lib/egg/egg-toggle-action.c:
+ * lib/egg/eggtoolbar.c:
+ * lib/egg/eggtoolbutton.c:
+ * lib/egg/eggtoolitem.c:
+ * lib/widgets/ephy-ellipsizing-label.h:
+ * lib/widgets/ephy-spinner.h:
+ * src/ephy-favicon-action.c:
+ * src/ephy-location-action.c:
+ * src/ephy-navigation-action.c:
+ * src/ephy-spinner-action.c:
+ * src/bookmarks/ephy-bookmark-action.c:
+
+ The same no-brainer as in nautilus. Changed GtkType to Gtype.
+
2003-02-08 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/widgets/ephy-location-entry.c:
diff --git a/lib/egg/egg-accel-dialog.c b/lib/egg/egg-accel-dialog.c
index 4173cbf02..7435044e8 100644
--- a/lib/egg/egg-accel-dialog.c
+++ b/lib/egg/egg-accel-dialog.c
@@ -6,7 +6,7 @@ static void egg_accel_dialog_class_init (EggAccelDialogClass *class);
GType
egg_accel_dialog_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/egg/egg-action.c b/lib/egg/egg-action.c
index 89886b575..6d1889e65 100644
--- a/lib/egg/egg-action.c
+++ b/lib/egg/egg-action.c
@@ -38,7 +38,7 @@ static const gchar *accel_path_key = "EggAction::accel_path";
GType
egg_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/egg/egg-menu-merge.c b/lib/egg/egg-menu-merge.c
index bacc34dde..4be261948 100644
--- a/lib/egg/egg-menu-merge.c
+++ b/lib/egg/egg-menu-merge.c
@@ -52,7 +52,7 @@ static GObjectClass *parent_class = NULL;
GType
egg_menu_merge_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/egg/egg-radio-action.c b/lib/egg/egg-radio-action.c
index 888448c50..6a4a13314 100644
--- a/lib/egg/egg-radio-action.c
+++ b/lib/egg/egg-radio-action.c
@@ -6,7 +6,7 @@ static void egg_radio_action_class_init (EggRadioActionClass *class);
GType
egg_radio_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/egg/egg-toggle-action.c b/lib/egg/egg-toggle-action.c
index 6c0c0b442..0c5dfe121 100644
--- a/lib/egg/egg-toggle-action.c
+++ b/lib/egg/egg-toggle-action.c
@@ -12,7 +12,7 @@ static void egg_toggle_action_class_init (EggToggleActionClass *class);
GType
egg_toggle_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/egg/eggtoolbar.c b/lib/egg/eggtoolbar.c
index 4f583fc14..3a14fca31 100644
--- a/lib/egg/eggtoolbar.c
+++ b/lib/egg/eggtoolbar.c
@@ -152,7 +152,7 @@ static guint toolbar_signals [LAST_SIGNAL] = { 0 };
GType
egg_toolbar_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/egg/eggtoolbutton.c b/lib/egg/eggtoolbutton.c
index 4ff471729..ad3c5b5db 100644
--- a/lib/egg/eggtoolbutton.c
+++ b/lib/egg/eggtoolbutton.c
@@ -82,7 +82,7 @@ static GObjectClass *parent_class = NULL;
GType
egg_tool_button_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/egg/eggtoolitem.c b/lib/egg/eggtoolitem.c
index 0bb234286..59556ffab 100644
--- a/lib/egg/eggtoolitem.c
+++ b/lib/egg/eggtoolitem.c
@@ -71,7 +71,7 @@ static guint toolitem_signals[LAST_SIGNAL] = { 0 };
GType
egg_tool_item_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/lib/widgets/ephy-ellipsizing-label.h b/lib/widgets/ephy-ellipsizing-label.h
index 6f596edfa..7e64a12f2 100644
--- a/lib/widgets/ephy-ellipsizing-label.h
+++ b/lib/widgets/ephy-ellipsizing-label.h
@@ -53,7 +53,7 @@ typedef struct
GtkLabelClass parent_class;
} EphyEllipsizingLabelClass;
-GtkType ephy_ellipsizing_label_get_type (void);
+GType ephy_ellipsizing_label_get_type (void);
GtkWidget *ephy_ellipsizing_label_new (const char *string);
diff --git a/lib/widgets/ephy-spinner.h b/lib/widgets/ephy-spinner.h
index 6aee728a0..5ea60b074 100644
--- a/lib/widgets/ephy-spinner.h
+++ b/lib/widgets/ephy-spinner.h
@@ -61,7 +61,7 @@ struct EphySpinnerClass {
GtkEventBoxClass parent_class;
};
-GtkType ephy_spinner_get_type (void);
+GType ephy_spinner_get_type (void);
GtkWidget *ephy_spinner_new (void);
void ephy_spinner_start (EphySpinner *throbber);
void ephy_spinner_stop (EphySpinner *throbber);
diff --git a/src/bookmarks/ephy-bookmark-action.c b/src/bookmarks/ephy-bookmark-action.c
index 59e27fd09..1352baf26 100644
--- a/src/bookmarks/ephy-bookmark-action.c
+++ b/src/bookmarks/ephy-bookmark-action.c
@@ -55,7 +55,7 @@ static guint ephy_bookmark_action_signals[LAST_SIGNAL] = { 0 };
GType
ephy_bookmark_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/src/ephy-favicon-action.c b/src/ephy-favicon-action.c
index fd19516ea..d2f6fd9b1 100644
--- a/src/ephy-favicon-action.c
+++ b/src/ephy-favicon-action.c
@@ -48,7 +48,7 @@ static GObjectClass *parent_class = NULL;
GType
ephy_favicon_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/src/ephy-location-action.c b/src/ephy-location-action.c
index 5030c7b45..5e6a6f610 100644
--- a/src/ephy-location-action.c
+++ b/src/ephy-location-action.c
@@ -38,7 +38,7 @@ static guint ephy_location_action_signals[LAST_SIGNAL] = { 0 };
GType
ephy_location_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/src/ephy-navigation-action.c b/src/ephy-navigation-action.c
index 3aeaef386..6073292ac 100644
--- a/src/ephy-navigation-action.c
+++ b/src/ephy-navigation-action.c
@@ -42,7 +42,7 @@ enum
GType
ephy_navigation_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{
diff --git a/src/ephy-spinner-action.c b/src/ephy-spinner-action.c
index 5b0ef5ed8..45e7bc6dc 100644
--- a/src/ephy-spinner-action.c
+++ b/src/ephy-spinner-action.c
@@ -40,7 +40,7 @@ static GObjectClass *parent_class = NULL;
GType
ephy_spinner_action_get_type (void)
{
- static GtkType type = 0;
+ static GType type = 0;
if (!type)
{