aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChristian Meyer <chrisime@src.gnome.org>2003-02-09 03:38:38 +0800
committerChristian Meyer <chrisime@src.gnome.org>2003-02-09 03:38:38 +0800
commit2f4619f7a19aa79016051d82c060aaf53ef719c1 (patch)
treec29434d0396fd5f53d07cfeb474256d703293629 /lib
parent887537b93f80cd1c0ca81f5a4a42d4373c27d0ba (diff)
downloadgsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar
gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar.gz
gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar.bz2
gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar.lz
gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar.xz
gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar.zst
gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.zip
Changed GtkType to GType.
Diffstat (limited to 'lib')
-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
10 files changed, 10 insertions, 10 deletions
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);