diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-03-09 04:04:40 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-03-09 04:04:40 +0000 |
commit | 263bce4445987c0ffee10438464106d55458f85e (patch) | |
tree | cbe7611df1a1b44f0636f5ec747769e1c49c5aad /gtk/gtkwindow.c | |
parent | c8ce95ab5290f5d7706b62cc36c2bb960554fb45 (diff) | |
download | gtk+-263bce4445987c0ffee10438464106d55458f85e.tar.gz |
x
2005-03-08 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktextbuffer.c (gtk_text_buffer_class_init):
* gtk/gtkrange.c (gtk_range_class_init):
* gtk/gtkscrolledwindow.c (gtk_scrolled_window_class_init):
* gtk/gtktexttag.c (gtk_text_tag_class_init):
* gtk/gtktextview.c (gtk_text_view_class_init):
* gtk/gtkscrollbar.c (gtk_scrollbar_class_init):
* gtk/gtknotebook.c (gtk_notebook_class_init):
* gtk/gtkentry.c (gtk_entry_class_init):
* gtk/gtkexpander.c (gtk_expander_class_init):
* gtk/gtkarrow.c (gtk_arrow_class_init):
* gtk/gtkalignment.c (gtk_alignment_class_init):
* gtk/gtkbutton.c (gtk_button_class_init):
* gtk/gtklabel.c (gtk_label_class_init):
* gtk/gtktreeviewcolumn.c (gtk_tree_view_column_class_init):
* gtk/gtkcellrenderertext.c (gtk_cell_renderer_text_class_init): x
* gtk/gtkcellrenderer.c (gtk_cell_renderer_class_init):
* gtk/gtktreeview.c (gtk_tree_view_class_init):
* gtk/gtkbox.c (gtk_box_class_init):
* gtk/gtkwindow.c (gtk_window_class_init, gtk_window_class_init):
* gtk/gtkcontainer.c (gtk_container_class_init):
* gtk/gtkwidget.c (gtk_widget_class_init):
* gtk/gtkobject.c (gtk_object_class_init): Use canonical names
when registering param specs.
Diffstat (limited to 'gtk/gtkwindow.c')
-rw-r--r-- | gtk/gtkwindow.c | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c index ecd8b34a05..2001d6f746 100644 --- a/gtk/gtkwindow.c +++ b/gtk/gtkwindow.c @@ -439,7 +439,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_ALLOW_SHRINK, - g_param_spec_boolean ("allow_shrink", + g_param_spec_boolean ("allow-shrink", P_("Allow Shrink"), /* xgettext:no-c-format */ P_("If TRUE, the window has no mimimum size. Setting this to TRUE is 99% of the time a bad idea"), @@ -448,7 +448,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_ALLOW_GROW, - g_param_spec_boolean ("allow_grow", + g_param_spec_boolean ("allow-grow", P_("Allow Grow"), P_("If TRUE, users can expand the window beyond its minimum size"), TRUE, @@ -472,7 +472,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_WIN_POS, - g_param_spec_enum ("window_position", + g_param_spec_enum ("window-position", P_("Window Position"), P_("The initial position of the window"), GTK_TYPE_WINDOW_POSITION, @@ -481,7 +481,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_DEFAULT_WIDTH, - g_param_spec_int ("default_width", + g_param_spec_int ("default-width", P_("Default Width"), P_("The default width of the window, used when initially showing the window"), -1, @@ -491,7 +491,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_DEFAULT_HEIGHT, - g_param_spec_int ("default_height", + g_param_spec_int ("default-height", P_("Default Height"), P_("The default height of the window, used when initially showing the window"), -1, @@ -501,7 +501,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_DESTROY_WITH_PARENT, - g_param_spec_boolean ("destroy_with_parent", + g_param_spec_boolean ("destroy-with-parent", P_("Destroy with Parent"), P_("If this window should be destroyed when the parent is destroyed"), FALSE, @@ -525,7 +525,7 @@ gtk_window_class_init (GtkWindowClass *klass) */ g_object_class_install_property (gobject_class, PROP_ICON_NAME, - g_param_spec_string ("icon_name", + g_param_spec_string ("icon-name", P_("Icon Name"), P_("Name of the themed icon for this window"), NULL, @@ -541,7 +541,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_IS_ACTIVE, - g_param_spec_boolean ("is_active", + g_param_spec_boolean ("is-active", P_("Is Active"), P_("Whether the toplevel is the current active window"), FALSE, @@ -549,7 +549,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_HAS_TOPLEVEL_FOCUS, - g_param_spec_boolean ("has_toplevel_focus", + g_param_spec_boolean ("has-toplevel-focus", P_("Focus in Toplevel"), P_("Whether the input focus is within this GtkWindow"), FALSE, @@ -557,7 +557,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_TYPE_HINT, - g_param_spec_enum ("type_hint", + g_param_spec_enum ("type-hint", P_("Type hint"), P_("Hint to help the desktop environment understand what kind of window this is and how to treat it."), GDK_TYPE_WINDOW_TYPE_HINT, @@ -566,7 +566,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_SKIP_TASKBAR_HINT, - g_param_spec_boolean ("skip_taskbar_hint", + g_param_spec_boolean ("skip-taskbar-hint", P_("Skip taskbar"), P_("TRUE if the window should not be in the task bar."), FALSE, @@ -574,7 +574,7 @@ gtk_window_class_init (GtkWindowClass *klass) g_object_class_install_property (gobject_class, PROP_SKIP_PAGER_HINT, - g_param_spec_boolean ("skip_pager_hint", + g_param_spec_boolean ("skip-pager-hint", P_("Skip pager"), P_("TRUE if the window should not be in the pager."), FALSE, @@ -589,7 +589,7 @@ gtk_window_class_init (GtkWindowClass *klass) */ g_object_class_install_property (gobject_class, PROP_ACCEPT_FOCUS, - g_param_spec_boolean ("accept_focus", + g_param_spec_boolean ("accept-focus", P_("Accept focus"), P_("TRUE if the window should receive the input focus."), TRUE, @@ -604,7 +604,7 @@ gtk_window_class_init (GtkWindowClass *klass) */ g_object_class_install_property (gobject_class, PROP_FOCUS_ON_MAP, - g_param_spec_boolean ("focus_on_map", + g_param_spec_boolean ("focus-on-map", P_("Focus on map"), P_("TRUE if the window should receive the input focus when mapped."), TRUE, |