diff options
author | Owen Taylor <otaylor@redhat.com> | 2000-12-05 20:50:24 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2000-12-05 20:50:24 +0000 |
commit | 691576eb4087b87608d65d349e6f3bba608c74d5 (patch) | |
tree | f649122abe86256f065158c4fe7befe722ad92fe | |
parent | f2e4ead7db82ce54972ec7b5af11a14815e88181 (diff) | |
download | gdk-pixbuf-691576eb4087b87608d65d349e6f3bba608c74d5.tar.gz |
Fix to say that file_selection_complete() filters both files and
Thu Nov 30 00:53:45 2000 Owen Taylor <otaylor@redhat.com>
* gtk/tmpl/gtkfilesel.sgml: Fix to say that file_selection_complete()
filters both files and directories.
* gtk/tmpl/gtktogglebutton.sgml: Fix description
of gtk_toggle_button_toggled().
-rw-r--r-- | docs/reference/ChangeLog | 8 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtkfilesel.sgml | 10 | ||||
-rw-r--r-- | docs/reference/gtk/tmpl/gtktogglebutton.sgml | 4 |
3 files changed, 18 insertions, 4 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 2ef7647ec..96b66d7d1 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,11 @@ +Thu Nov 30 00:53:45 2000 Owen Taylor <otaylor@redhat.com> + + * gtk/tmpl/gtkfilesel.sgml: Fix to say that file_selection_complete() + filters both files and directories. + + * gtk/tmpl/gtktogglebutton.sgml: Fix description + of gtk_toggle_button_toggled(). + Fri Nov 17 17:31:30 2000 Owen Taylor <otaylor@redhat.com> * gtk/Makefile.am (content_files): Add a couple diff --git a/docs/reference/gtk/tmpl/gtkfilesel.sgml b/docs/reference/gtk/tmpl/gtkfilesel.sgml index 9ac71c75c..ef0bb7dfd 100644 --- a/docs/reference/gtk/tmpl/gtkfilesel.sgml +++ b/docs/reference/gtk/tmpl/gtkfilesel.sgml @@ -15,7 +15,9 @@ File selection dialogs are created with a call to gtk_file_selection_new(). The default filename can be set using gtk_file_selection_set_filename() and the selected filename retrieved using gtk_file_selection_get_filename(). </para> <para> -Use gtk_file_selection_complete() to display files that match a given pattern. This can be used for example, to show only *.txt files, or only files beginning with gtk*. +Use gtk_file_selection_complete() to display files and directories +that match a given pattern. This can be used for example, to show only +*.txt files, or only files beginning with gtk*. </para> <para> Simple file operations; create directory, delete file, and rename file, are available from buttons at the top of the dialog. These can be hidden using gtk_file_selection_hide_fileop_buttons() and shown again using gtk_file_selection_show_fileop_buttons(). @@ -141,8 +143,10 @@ Retrieves the currently selected filename from the file selection dialog. If no <!-- ##### FUNCTION gtk_file_selection_complete ##### --> <para> -Will attempt to match @pattern to a valid filename in the current directory. If a match can be made, the matched filename will appear in the text entry field of the file selection dialog. -If a partial match can be made, the "Files" list will contain those file names which have been partially matched. +Will attempt to match @pattern to a valid filenames or subdirectories in the current directory. If a match can be made, the matched filename will appear in the text entry field of the file selection dialog. +If a partial match can be made, the "Files" list will contain those +file names which have been partially matched, and the "Directories" +list those directories which have been partially matched. </para> @filesel: a #GtkFileSelection. diff --git a/docs/reference/gtk/tmpl/gtktogglebutton.sgml b/docs/reference/gtk/tmpl/gtktogglebutton.sgml index 83dd4acbb..65f98af29 100644 --- a/docs/reference/gtk/tmpl/gtktogglebutton.sgml +++ b/docs/reference/gtk/tmpl/gtktogglebutton.sgml @@ -114,7 +114,9 @@ This is a deprecated macro, and is only maintained for compatability reasons. <!-- ##### FUNCTION gtk_toggle_button_toggled ##### --> <para> -Changes the state of the toggle button. +Emits the <link linkend="GtkToggleButton-toggled">toggled</link> +signal on the #GtkToggleButton. There is no good reason for an +application ever to call this function. </para> @toggle_button: a #GtkToggleButton. |