summaryrefslogtreecommitdiff
path: root/gtk
diff options
context:
space:
mode:
authorVitaly Tishkov <tvv@sparc.spb.su>2002-01-10 16:36:25 +0000
committerVitaly Tishkov <tvv@src.gnome.org>2002-01-10 16:36:25 +0000
commitf74dd2386a74e66736dc3a8981a20c6b0835e6ad (patch)
treed37422d42400f44c01e3d1a9ca684a64227e8216 /gtk
parentd3eb836dd4d4a34c0a1bd6fa48d76cd853723054 (diff)
downloadgtk+-f74dd2386a74e66736dc3a8981a20c6b0835e6ad.tar.gz
gtk/gtkimage.c gtk/gtkimcontext.c gtk/gtktreemodel.c
2002-01-10 Vitaly Tishkov <tvv@sparc.spb.su> * gtk/gtkimage.c * gtk/gtkimcontext.c * gtk/gtktreemodel.c * gtk/gtktreemodelsort.c * gtk/gtkwindow.c * docs/reference/gtk/tmpl/gtkselection.sgml fix docs
Diffstat (limited to 'gtk')
-rw-r--r--gtk/gtkimage.c2
-rw-r--r--gtk/gtkimcontext.c4
-rw-r--r--gtk/gtktreemodel.c4
-rw-r--r--gtk/gtktreemodelsort.c2
-rw-r--r--gtk/gtkwindow.c2
5 files changed, 7 insertions, 7 deletions
diff --git a/gtk/gtkimage.c b/gtk/gtkimage.c
index d601ed15c8..a429d8691b 100644
--- a/gtk/gtkimage.c
+++ b/gtk/gtkimage.c
@@ -796,7 +796,7 @@ gtk_image_set_from_pixbuf (GtkImage *image,
* @stock_id: a stock icon name
* @size: a stock icon size
*
- * See gtk_image_new_from_stock for details.
+ * See gtk_image_new_from_stock() for details.
*
**/
void
diff --git a/gtk/gtkimcontext.c b/gtk/gtkimcontext.c
index cc0aa32009..925021f907 100644
--- a/gtk/gtkimcontext.c
+++ b/gtk/gtkimcontext.c
@@ -293,7 +293,7 @@ gtk_im_context_get_preedit_string (GtkIMContext *context,
* @event: the key event
*
* Allow an input method to internally handle a key press event.
- * if this function returns %TRUE, then no further processing
+ * If this function returns %TRUE, then no further processing
* should be done for this keystroke.
*
* Return value: %TRUE if the input method handled the keystroke.
@@ -475,7 +475,7 @@ gtk_im_context_set_surrounding (GtkIMContext *context,
* GtkIMContext::retrieve_context signal on the input method; in
* response to this signal, a widget should provide as much context as
* is available, up to an entire paragraph, by calling
- * gtk_im_context_set_surrounding. Note that there is no obligation
+ * gtk_im_context_set_surrounding(). Note that there is no obligation
* for a widget to respond to the ::retrieve_context signal, so input
* methods must be prepared to function without context.
*
diff --git a/gtk/gtktreemodel.c b/gtk/gtktreemodel.c
index 07d5f6748b..627ebee287 100644
--- a/gtk/gtktreemodel.c
+++ b/gtk/gtktreemodel.c
@@ -364,7 +364,7 @@ gtk_tree_path_copy (GtkTreePath *path)
* @a: A #GtkTreePath.
* @b: A #GtkTreePath to compare with.
*
- * Compares two paths. If @a appears before @b in a tree, then -1, is returned.
+ * Compares two paths. If @a appears before @b in a tree, then -1 is returned.
* If @b appears before @a, then 1 is returned. If the two nodes are equal,
* then 0 is returned.
*
@@ -1176,7 +1176,7 @@ gtk_tree_model_foreach_helper (GtkTreeModel *model,
* @user_data: User data to passed to func.
*
* Calls func on each node in model in a depth-first fashion. If func returns
- * %TRUE, then the tree ceases to be walked, and gtk_tree_model_foreach returns.
+ * %TRUE, then the tree ceases to be walked, and gtk_tree_model_foreach() returns.
**/
void
diff --git a/gtk/gtktreemodelsort.c b/gtk/gtktreemodelsort.c
index 291c493bda..9c3b90fb4c 100644
--- a/gtk/gtktreemodelsort.c
+++ b/gtk/gtktreemodelsort.c
@@ -1971,7 +1971,7 @@ gtk_tree_model_sort_convert_child_iter_to_iter (GtkTreeModelSort *tree_model_sor
* is, @sort_path points ot a location in @tree_model_sort. The returned path
* will point to the same location in the model not being sorted. If @path does not point to a
*
- * Return value: A newly allocated #GtkTreePath, or %NULLL
+ * Return value: A newly allocated #GtkTreePath, or %NULL
**/
GtkTreePath *
gtk_tree_model_sort_convert_path_to_child_path (GtkTreeModelSort *tree_model_sort,
diff --git a/gtk/gtkwindow.c b/gtk/gtkwindow.c
index b96832dd20..ed16e9370e 100644
--- a/gtk/gtkwindow.c
+++ b/gtk/gtkwindow.c
@@ -2523,7 +2523,7 @@ gtk_window_resize (GtkWindow *window,
* way is to simply set the window's semantic type with
* gtk_window_set_type_hint(), which allows the window manager to
* e.g. center dialogs. Also, if you set the transient parent of
- * dialogs with gtk_widget_set_transient_for() window managers
+ * dialogs with gtk_window_set_transient_for() window managers
* will often center the dialog over its parent window. It's
* much preferred to let the window manager handle these
* things rather than doing it yourself, because all apps will