diff options
author | Christian Meyer <chrisime@src.gnome.org> | 2003-02-09 03:38:38 +0800 |
---|---|---|
committer | Christian Meyer <chrisime@src.gnome.org> | 2003-02-09 03:38:38 +0800 |
commit | 2f4619f7a19aa79016051d82c060aaf53ef719c1 (patch) | |
tree | c29434d0396fd5f53d07cfeb474256d703293629 /src | |
parent | 887537b93f80cd1c0ca81f5a4a42d4373c27d0ba (diff) | |
download | gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar.gz gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.tar.zst gsoc2013-epiphany-2f4619f7a19aa79016051d82c060aaf53ef719c1.zip |
Changed GtkType to GType.
Diffstat (limited to 'src')
-rw-r--r-- | src/bookmarks/ephy-bookmark-action.c | 2 | ||||
-rw-r--r-- | src/ephy-favicon-action.c | 2 | ||||
-rw-r--r-- | src/ephy-location-action.c | 2 | ||||
-rw-r--r-- | src/ephy-navigation-action.c | 2 | ||||
-rw-r--r-- | src/ephy-spinner-action.c | 2 |
5 files changed, 5 insertions, 5 deletions
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) { |