diff options
Diffstat (limited to 'lib/widgets')
-rw-r--r-- | lib/widgets/ephy-icon-entry.c | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-node-view.c | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-search-entry.c | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-spinner.c | 4 | ||||
-rw-r--r-- | lib/widgets/ephy-tree-model-node.c | 4 | ||||
-rw-r--r-- | lib/widgets/ephy-tree-model-sort.c | 4 | ||||
-rw-r--r-- | lib/widgets/ephy-zoom-action.c | 2 | ||||
-rw-r--r-- | lib/widgets/ephy-zoom-control.c | 2 |
9 files changed, 12 insertions, 12 deletions
diff --git a/lib/widgets/ephy-icon-entry.c b/lib/widgets/ephy-icon-entry.c index 1950819fb..d7c545341 100644 --- a/lib/widgets/ephy-icon-entry.c +++ b/lib/widgets/ephy-icon-entry.c @@ -292,7 +292,7 @@ ephy_icon_entry_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphyIconEntryClass), NULL, diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 939267839..a3da0fd28 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -135,7 +135,7 @@ ephy_location_entry_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphyLocationEntryClass), NULL, diff --git a/lib/widgets/ephy-node-view.c b/lib/widgets/ephy-node-view.c index fcbc34e18..0a6365ec3 100644 --- a/lib/widgets/ephy-node-view.c +++ b/lib/widgets/ephy-node-view.c @@ -112,7 +112,7 @@ ephy_node_view_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphyNodeViewClass), NULL, diff --git a/lib/widgets/ephy-search-entry.c b/lib/widgets/ephy-search-entry.c index a783f2ae3..facc0bda6 100644 --- a/lib/widgets/ephy-search-entry.c +++ b/lib/widgets/ephy-search-entry.c @@ -55,7 +55,7 @@ ephy_search_entry_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphySearchEntryClass), NULL, diff --git a/lib/widgets/ephy-spinner.c b/lib/widgets/ephy-spinner.c index 1371ea3dd..3bf36bc65 100644 --- a/lib/widgets/ephy-spinner.c +++ b/lib/widgets/ephy-spinner.c @@ -104,7 +104,7 @@ ephy_spinner_cache_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphySpinnerCacheClass), NULL, @@ -534,7 +534,7 @@ ephy_spinner_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphySpinnerClass), NULL, /* base_init */ diff --git a/lib/widgets/ephy-tree-model-node.c b/lib/widgets/ephy-tree-model-node.c index 0fb20594d..496620ab8 100644 --- a/lib/widgets/ephy-tree-model-node.c +++ b/lib/widgets/ephy-tree-model-node.c @@ -69,7 +69,7 @@ ephy_tree_model_node_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphyTreeModelNodeClass), NULL, @@ -82,7 +82,7 @@ ephy_tree_model_node_get_type (void) (GInstanceInitFunc) ephy_tree_model_node_init }; - static const GInterfaceInfo tree_model_info = + const GInterfaceInfo tree_model_info = { (GInterfaceInitFunc) ephy_tree_model_node_tree_model_init, NULL, diff --git a/lib/widgets/ephy-tree-model-sort.c b/lib/widgets/ephy-tree-model-sort.c index dc6af7982..a9cd26045 100644 --- a/lib/widgets/ephy-tree-model-sort.c +++ b/lib/widgets/ephy-tree-model-sort.c @@ -61,7 +61,7 @@ ephy_tree_model_sort_get_type (void) if (G_UNLIKELY (type == 0)) { - static const GTypeInfo our_info = + const GTypeInfo our_info = { sizeof (EphyTreeModelSortClass), NULL, /* base init */ @@ -73,7 +73,7 @@ ephy_tree_model_sort_get_type (void) 0, /* n_preallocs */ (GInstanceInitFunc) ephy_tree_model_sort_init }; - static const GInterfaceInfo multi_drag_source_info = + const GInterfaceInfo multi_drag_source_info = { (GInterfaceInitFunc) ephy_tree_model_sort_multi_drag_source_init, NULL, diff --git a/lib/widgets/ephy-zoom-action.c b/lib/widgets/ephy-zoom-action.c index 3334cf7a2..3f75ea0cd 100644 --- a/lib/widgets/ephy-zoom-action.c +++ b/lib/widgets/ephy-zoom-action.c @@ -66,7 +66,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/lib/widgets/ephy-zoom-control.c b/lib/widgets/ephy-zoom-control.c index 040a00dba..b4f282919 100644 --- a/lib/widgets/ephy-zoom-control.c +++ b/lib/widgets/ephy-zoom-control.c @@ -66,7 +66,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 */ |