mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Mark param spec strings as static.
2005-03-21 Matthias Clasen <mclasen@redhat.com> * gdk/gdkpango.c (gdk_pango_renderer_class_init): * gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark param spec strings as static.
This commit is contained in:
parent
7e77ea9943
commit
0660947018
@ -1,3 +1,9 @@
|
||||
2005-03-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/gdkpango.c (gdk_pango_renderer_class_init):
|
||||
* gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
|
||||
param spec strings as static.
|
||||
|
||||
2005-03-21 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* modules/engines/ms-windows/*.c: Silence gcc warnings (unused
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-03-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/gdkpango.c (gdk_pango_renderer_class_init):
|
||||
* gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
|
||||
param spec strings as static.
|
||||
|
||||
2005-03-21 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* modules/engines/ms-windows/*.c: Silence gcc warnings (unused
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-03-21 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gdk/gdkpango.c (gdk_pango_renderer_class_init):
|
||||
* gdk/gdkdisplaymanager.c (gdk_display_manager_class_init): Mark
|
||||
param spec strings as static.
|
||||
|
||||
2005-03-21 Tor Lillqvist <tml@novell.com>
|
||||
|
||||
* modules/engines/ms-windows/*.c: Silence gcc warnings (unused
|
||||
|
@ -129,7 +129,8 @@ gdk_display_manager_class_init (GdkDisplayManagerClass *klass)
|
||||
P_("Default Display"),
|
||||
P_("The default display for GDK"),
|
||||
GDK_TYPE_DISPLAY,
|
||||
G_PARAM_READWRITE));
|
||||
G_PARAM_READWRITE|G_PARAM_STATIC_NAME|
|
||||
G_PARAM_STATIC_NICK|G_PARAM_STATIC_BLURB));
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -570,7 +570,9 @@ gdk_pango_renderer_class_init (GdkPangoRendererClass *klass)
|
||||
P_("Screen"),
|
||||
P_("the GdkScreen for the renderer"),
|
||||
GDK_TYPE_SCREEN,
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
|
||||
G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY |
|
||||
G_PARAM_STATIC_NAME | G_PARAM_STATIC_NICK |
|
||||
G_PARAM_STATIC_BLURB));
|
||||
|
||||
g_type_class_add_private (object_class, sizeof (GdkPangoRendererPrivate));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user