Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/cut-n-paste/recent-files
diff options
context:
space:
mode:
Diffstat (limited to 'cut-n-paste/recent-files')
-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
3 files changed, 4 insertions, 4 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 */