Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2006-10-08 12:35:42 (GMT)
committer Christian Persch <chpe@src.gnome.org>2006-10-08 12:35:42 (GMT)
commit47fb87e520d1abe31a1965d500602e0e80e899b2 (patch)
tree1f5c10c4cc41b77d91edef26802f31ff023e70d4 /cut-n-paste
parent217f85b9017e614505bf4a654d5b282921ff0d9e (diff)
Reduce relocations. Bug #360616.
2006-10-08 Christian Persch <chpe@cvs.gnome.org> * backend/ev-async-renderer.c: (ev_async_renderer_get_type): * backend/ev-document-find.c: (ev_document_find_get_type): * backend/ev-document-fonts.c: (ev_document_fonts_get_type): * backend/ev-document-links.c: (ev_document_links_get_type): * backend/ev-document-security.c: (ev_document_security_get_type): * backend/ev-document-thumbnails.c: (ev_document_thumbnails_get_type): * backend/ev-document.c: (ev_document_get_type): * backend/ev-ps-exporter.c: (ev_ps_exporter_get_type): * backend/ev-selection.c: (ev_selection_get_type): * cut-n-paste/recent-files/egg-recent-model.c: (egg_recent_model_get_type): * cut-n-paste/recent-files/egg-recent-view-uimanager.c: (egg_recent_view_uimanager_get_type): * cut-n-paste/recent-files/egg-recent-view.c: (egg_recent_view_get_type): * cut-n-paste/toolbar-editor/egg-editable-toolbar.c: (egg_editable_toolbar_get_type): * cut-n-paste/toolbar-editor/egg-toolbar-editor.c: (egg_toolbar_editor_get_type): * cut-n-paste/toolbar-editor/egg-toolbars-model.c: (egg_toolbars_model_get_type): * cut-n-paste/toolbar-editor/eggtreemultidnd.c: (egg_tree_multi_drag_source_get_type): * cut-n-paste/zoom-control/ephy-zoom-action.c: (ephy_zoom_action_get_type): * cut-n-paste/zoom-control/ephy-zoom-control.c: (ephy_zoom_control_get_type): * impress/r_back.c: (_imp_fill_back): * properties/ev-properties-main.c: (ev_properties_plugin_register_type): * shell/ev-sidebar-page.c: (ev_sidebar_page_get_type): * shell/ev-view-accessible.c: (ev_view_accessible_get_type), (ev_view_accessible_factory_get_type): Reduce relocations. Bug #360616.
Diffstat (limited to 'cut-n-paste')
-rw-r--r--cut-n-paste/recent-files/egg-recent-model.c2
-rw-r--r--cut-n-paste/recent-files/egg-recent-view-uimanager.c4
-rw-r--r--cut-n-paste/recent-files/egg-recent-view.c2
-rw-r--r--cut-n-paste/toolbar-editor/egg-editable-toolbar.c2
-rw-r--r--cut-n-paste/toolbar-editor/egg-toolbar-editor.c2
-rw-r--r--cut-n-paste/toolbar-editor/egg-toolbars-model.c2
-rw-r--r--cut-n-paste/toolbar-editor/eggtreemultidnd.c2
-rw-r--r--cut-n-paste/zoom-control/ephy-zoom-action.c2
-rw-r--r--cut-n-paste/zoom-control/ephy-zoom-control.c2
9 files changed, 10 insertions, 10 deletions
diff --git a/cut-n-paste/recent-files/egg-recent-model.c b/cut-n-paste/recent-files/egg-recent-model.c
index fc83fef..c9c255b 100644
--- a/cut-n-paste/recent-files/egg-recent-model.c
+++ b/cut-n-paste/recent-files/egg-recent-model.c
@@ -1941,7 +1941,7 @@ egg_recent_model_get_type (void)
static GType egg_recent_model_type = 0;
if(!egg_recent_model_type) {
- static const GTypeInfo egg_recent_model_info = {
+ const GTypeInfo egg_recent_model_info = {
sizeof (EggRecentModelClass),
NULL, /* base init */
NULL, /* base finalize */
diff --git a/cut-n-paste/recent-files/egg-recent-view-uimanager.c b/cut-n-paste/recent-files/egg-recent-view-uimanager.c
index 2010815..70d6639 100644
--- a/cut-n-paste/recent-files/egg-recent-view-uimanager.c
+++ b/cut-n-paste/recent-files/egg-recent-view-uimanager.c
@@ -838,7 +838,7 @@ egg_recent_view_uimanager_get_type (void)
static GType egg_recent_view_uimanager_type = 0;
if(!egg_recent_view_uimanager_type) {
- static const GTypeInfo egg_recent_view_uimanager_info = {
+ const GTypeInfo egg_recent_view_uimanager_info = {
sizeof (EggRecentViewUIManagerClass),
NULL, /* base init */
NULL, /* base finalize */
@@ -850,7 +850,7 @@ egg_recent_view_uimanager_get_type (void)
(GInstanceInitFunc) egg_recent_view_uimanager_init
};
- static const GInterfaceInfo view_info =
+ const GInterfaceInfo view_info =
{
(GInterfaceInitFunc) egg_recent_view_init,
NULL,
diff --git a/cut-n-paste/recent-files/egg-recent-view.c b/cut-n-paste/recent-files/egg-recent-view.c
index 7794561..2918de5 100644
--- a/cut-n-paste/recent-files/egg-recent-view.c
+++ b/cut-n-paste/recent-files/egg-recent-view.c
@@ -35,7 +35,7 @@ egg_recent_view_get_type (void)
if (!view_type)
{
- static const GTypeInfo view_info =
+ const GTypeInfo view_info =
{
sizeof (EggRecentViewClass), /* class_size */
NULL, /* base_init */
diff --git a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c
index b7fa095..8698ba6 100644
--- a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c
+++ b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c
@@ -109,7 +109,7 @@ egg_editable_toolbar_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info = {
+ const GTypeInfo our_info = {
sizeof (EggEditableToolbarClass),
NULL, /* base_init */
NULL, /* base_finalize */
diff --git a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c
index 0564c6f..3882626 100644
--- a/cut-n-paste/toolbar-editor/egg-toolbar-editor.c
+++ b/cut-n-paste/toolbar-editor/egg-toolbar-editor.c
@@ -78,7 +78,7 @@ egg_toolbar_editor_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info = {
+ const GTypeInfo our_info = {
sizeof (EggToolbarEditorClass),
NULL, /* base_init */
NULL, /* base_finalize */
diff --git a/cut-n-paste/toolbar-editor/egg-toolbars-model.c b/cut-n-paste/toolbar-editor/egg-toolbars-model.c
index f0a5b0f..2cd58ac 100644
--- a/cut-n-paste/toolbar-editor/egg-toolbars-model.c
+++ b/cut-n-paste/toolbar-editor/egg-toolbars-model.c
@@ -75,7 +75,7 @@ egg_toolbars_model_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info = {
+ const GTypeInfo our_info = {
sizeof (EggToolbarsModelClass),
NULL, /* base_init */
NULL, /* base_finalize */
diff --git a/cut-n-paste/toolbar-editor/eggtreemultidnd.c b/cut-n-paste/toolbar-editor/eggtreemultidnd.c
index 3a7da91..4850c68 100644
--- a/cut-n-paste/toolbar-editor/eggtreemultidnd.c
+++ b/cut-n-paste/toolbar-editor/eggtreemultidnd.c
@@ -59,7 +59,7 @@ egg_tree_multi_drag_source_get_type (void)
if (!our_type)
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EggTreeMultiDragSourceIface), /* class_size */
NULL, /* base_init */
diff --git a/cut-n-paste/zoom-control/ephy-zoom-action.c b/cut-n-paste/zoom-control/ephy-zoom-action.c
index 3baa94c..3aadf84 100644
--- a/cut-n-paste/zoom-control/ephy-zoom-action.c
+++ b/cut-n-paste/zoom-control/ephy-zoom-action.c
@@ -69,7 +69,7 @@ ephy_zoom_action_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EphyZoomActionClass),
NULL, /* base_init */
diff --git a/cut-n-paste/zoom-control/ephy-zoom-control.c b/cut-n-paste/zoom-control/ephy-zoom-control.c
index dcbe8a6..79076ab 100644
--- a/cut-n-paste/zoom-control/ephy-zoom-control.c
+++ b/cut-n-paste/zoom-control/ephy-zoom-control.c
@@ -73,7 +73,7 @@ ephy_zoom_control_get_type (void)
if (G_UNLIKELY (type == 0))
{
- static const GTypeInfo our_info =
+ const GTypeInfo our_info =
{
sizeof (EphyZoomControlClass),
NULL, /* base_init */