summaryrefslogtreecommitdiff
path: root/docs/faq
diff options
context:
space:
mode:
authorGMT 1999 Tony Gale <gale@gtk.org>1999-11-15 17:20:43 +0000
committerTony Gale <gale@src.gnome.org>1999-11-15 17:20:43 +0000
commitf3fcdb4e0e3d311f218105a249ea0710da41f37a (patch)
treec5193d097abcc2f5894fc16a1f1611c51685aa07 /docs/faq
parente4a20926033e64cbdfc1687539c488609940fadf (diff)
downloadgtk+-f3fcdb4e0e3d311f218105a249ea0710da41f37a.tar.gz
s/gtk_main_iteration/g_main_iteration/
Mon Nov 15 17:17:51 GMT 1999 Tony Gale <gale@gtk.org> * docs/gtkfaq.sgml: s/gtk_main_iteration/g_main_iteration/
Diffstat (limited to 'docs/faq')
-rw-r--r--docs/faq/gtkfaq.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/faq/gtkfaq.sgml b/docs/faq/gtkfaq.sgml
index 6d8c35fa10..1dea1a6c26 100644
--- a/docs/faq/gtkfaq.sgml
+++ b/docs/faq/gtkfaq.sgml
@@ -1544,7 +1544,7 @@ placed on a queue, which is processed within <tt/gtk_main()/. You can
force the drawing queue to be processed using something like:
<tscreen><verb>
-while (gtk_main_iteration(FALSE));
+while (g_main_iteration(FALSE));
</verb></tscreen>
inside you're function that changes the widget.