summaryrefslogtreecommitdiff
path: root/gtk/gtktextiter.h
diff options
context:
space:
mode:
authorMatthias Clasen <maclas@gmx.de>2003-06-14 22:27:14 +0000
committerMatthias Clasen <matthiasc@src.gnome.org>2003-06-14 22:27:14 +0000
commitec280c7b326e45dc014e94021fd290285570ad36 (patch)
treef0bc8b6563a0da5e0405b45dbf08de68297998c2 /gtk/gtktextiter.h
parentee9683ceec0a8d218a100624944f978a738d3d1f (diff)
downloadgtk+-ec280c7b326e45dc014e94021fd290285570ad36.tar.gz
Document new properties as 2.4 additions.
2003-06-15 Matthias Clasen <maclas@gmx.de> * gtk/gtkcalendar.c (gtk_calendar_class_init): * gtk/gtknotebook.c (gtk_notebook_class_init): * gtk/gtkalignment.c (gtk_alignment_class_init): * gtk/gtkpaned.c (gtk_paned_class_init): Document new properties as 2.4 additions. * gtk/gtkwidget.c (gtk_widget_class_init): Move inline signal docs to the proper place, immediately before the g_signal_new() call. * gtk/gtktextiter.h: Make the flags-nature of GtkTextSearchFlags more obvious. (#115122, Jeff Franks)
Diffstat (limited to 'gtk/gtktextiter.h')
-rw-r--r--gtk/gtktextiter.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtktextiter.h b/gtk/gtktextiter.h
index 0b6f245174..29b3bd01dc 100644
--- a/gtk/gtktextiter.h
+++ b/gtk/gtktextiter.h
@@ -35,8 +35,8 @@ extern "C" {
#endif /* __cplusplus */
typedef enum {
- GTK_TEXT_SEARCH_VISIBLE_ONLY,
- GTK_TEXT_SEARCH_TEXT_ONLY
+ GTK_TEXT_SEARCH_VISIBLE_ONLY = 1 << 0,
+ GTK_TEXT_SEARCH_TEXT_ONLY = 1 << 1
/* Possible future plans: SEARCH_CASE_INSENSITIVE, SEARCH_REGEXP */
} GtkTextSearchFlags;