summaryrefslogtreecommitdiff
path: root/gtk/gtkframe.c
diff options
context:
space:
mode:
authorSoren Sandmann <sandmann@daimi.au.dk>2002-08-10 09:55:41 +0000
committerSøren Sandmann Pedersen <ssp@src.gnome.org>2002-08-10 09:55:41 +0000
commit77eee887f3d1044a2e52ec7fd347842122d4719e (patch)
tree017b7ab3c3f209dcb610be73ab38f615f749f81b /gtk/gtkframe.c
parentaf1f560918354a567916edf8f9fa34ee4df170b8 (diff)
downloadgtk+-77eee887f3d1044a2e52ec7fd347842122d4719e.tar.gz
Minor documentation fixes
2002-08-10 Soren Sandmann <sandmann@daimi.au.dk> * docs/reference/gtk/tree_widget.sgml, docs/reference/gtk/tmpl/gtkdialog.sgml, docs/reference/gtk/tmpl/gtkentry.sgml, docs/reference/gtk/tmpl/gtkfilesel.sgml, docs/reference/gtk/tmpl/gtkfontsel.sgml, docs/reference/gtk/tmpl/gtkfontseldlg.sgml, docs/reference/gtk/tmpl/gtktreemodel.sgml, docs/reference/gtk/tmpl/gtkwidget.sgml, gdk/x11/gdkdisplay-x11.c, gtk/gtkbbox.c, gtk/gtkbox.c, gtk/gtkbutton.c, gtk/gtkcellrenderer.c, gtk/gtkcellrendererpixbuf.c, gtk/gtkcellrenderertext.c, gtk/gtkcheckmenuitem.c, gtk/gtkcontainer.c, gtk/gtkcurve.c, gtk/gtkdialog.h, gtk/gtkentry.c, gtk/gtkfilesel.c, gtk/gtkfontsel.c, gtk/gtkframe.c, gtk/gtkhandlebox.c, gtk/gtkiconfactory.c, gtk/gtkimage.c, gtk/gtkinvisible.c, gtk/gtkitemfactory.c, gtk/gtklabel.c, gtk/gtklayout.c, gtk/gtkmenu.c, gtk/gtkprogress.c, gtk/gtkprogressbar.c, gtk/gtkscrolledwindow.c, gtk/gtksizegroup.c, gtk/gtktable.c, gtk/gtktextiter.c, gtk/gtktexttag.c, gtk/gtktexttag.h, gtk/gtktextview.c, gtk/gtktogglebutton.c, gtk/gtktoolbar.c, gtk/gtktreemodel.c, gtk/gtktreeselection.c, gtk/gtktreestore.c, gtk/gtktreeview.c, gtk/gtktreeviewcolumn.c, gtk/gtkviewport.c, gtk/gtkwidget.c, gtk/gtkwidget.h, gtk/gtkwindow.c: Minor documentation fixes (#89254, patch from Brett Nash; #85809, patch from daten@dnetc.org; #76391, patch from Ross Burton; #74559, Manuel Clos; #73569, #72005, Alexey A. Malyshev; #70061, patch from Dennis Bj"orklund; #64566, #63388, #58328, #57499, #81007, #77349, Vitaly Tishkov; #78932, Vitaly Tishkov, patch from Ross Burton; #73306)
Diffstat (limited to 'gtk/gtkframe.c')
-rw-r--r--gtk/gtkframe.c15
1 files changed, 8 insertions, 7 deletions
diff --git a/gtk/gtkframe.c b/gtk/gtkframe.c
index 6668d63bc5..bedf2c4ae8 100644
--- a/gtk/gtkframe.c
+++ b/gtk/gtkframe.c
@@ -123,7 +123,7 @@ gtk_frame_class_init (GtkFrameClass *class)
PROP_LABEL,
g_param_spec_string ("label",
_("Label"),
- _("Text of the frame's label."),
+ _("Text of the frame's label"),
NULL,
G_PARAM_READABLE |
G_PARAM_WRITABLE));
@@ -131,7 +131,7 @@ gtk_frame_class_init (GtkFrameClass *class)
PROP_LABEL_XALIGN,
g_param_spec_float ("label_xalign",
_("Label xalign"),
- _("The horizontal alignment of the label."),
+ _("The horizontal alignment of the label"),
0.0,
1.0,
0.5,
@@ -141,7 +141,7 @@ gtk_frame_class_init (GtkFrameClass *class)
PROP_LABEL_YALIGN,
g_param_spec_float ("label_yalign",
_("Label yalign"),
- _("The vertical alignment of the label."),
+ _("The vertical alignment of the label"),
0.0,
1.0,
0.5,
@@ -150,7 +150,7 @@ gtk_frame_class_init (GtkFrameClass *class)
g_object_class_install_property (gobject_class,
PROP_SHADOW,
g_param_spec_enum ("shadow", NULL,
- _("Deprecated property, use shadow_type instead."),
+ _("Deprecated property, use shadow_type instead"),
GTK_TYPE_SHADOW_TYPE,
GTK_SHADOW_ETCHED_IN,
G_PARAM_READABLE | G_PARAM_WRITABLE));
@@ -158,7 +158,7 @@ gtk_frame_class_init (GtkFrameClass *class)
PROP_SHADOW_TYPE,
g_param_spec_enum ("shadow_type",
_("Frame shadow"),
- _("Appearance of the frame border."),
+ _("Appearance of the frame border"),
GTK_TYPE_SHADOW_TYPE,
GTK_SHADOW_ETCHED_IN,
G_PARAM_READABLE | G_PARAM_WRITABLE));
@@ -167,7 +167,7 @@ gtk_frame_class_init (GtkFrameClass *class)
PROP_LABEL_WIDGET,
g_param_spec_object ("label_widget",
_("Label widget"),
- _("A widget to display in place of the usual frame label."),
+ _("A widget to display in place of the usual frame label"),
GTK_TYPE_WIDGET,
G_PARAM_READABLE | G_PARAM_WRITABLE));
@@ -334,7 +334,8 @@ gtk_frame_set_label (GtkFrame *frame,
*
* Return value: the text in the label, or %NULL if there
* was no label widget or the lable widget was not
- * a #GtkLabel. This value must be freed with g_free().
+ * a #GtkLabel. This string is owned by GTK+ and
+ * must not be modified or freed.
**/
G_CONST_RETURN gchar *
gtk_frame_get_label (GtkFrame *frame)