diff options
author | BST 2000 Tony Gale <gale@gtk.org> | 2000-07-31 13:00:21 +0000 |
---|---|---|
committer | Tony Gale <gale@src.gnome.org> | 2000-07-31 13:00:21 +0000 |
commit | 621639b754db0c545970a353d59803855040ee4f (patch) | |
tree | 0140d0d6e2ea082497e0a54d481e84774779df03 /docs/faq | |
parent | e4d140d5aa182709945cf6b670d331c3a98ccffa (diff) | |
download | gtk+-621639b754db0c545970a353d59803855040ee4f.tar.gz |
s/gtk_main_iteration/g_main_iteration/
Mon Jul 31 13:53:16 BST 2000 Tony Gale <gale@gtk.org>
* docs/gtkfaq.sgml docs/gtk-faq.sgml:
s/gtk_main_iteration/g_main_iteration/
Did this already in change:
Mon Nov 15 17:17:51 GMT 1999 Tony Gale <gale@gtk.org>
don't know how it got reverted.
Diffstat (limited to 'docs/faq')
-rw-r--r-- | docs/faq/gtk-faq.sgml | 2 | ||||
-rw-r--r-- | docs/faq/gtkfaq.sgml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/faq/gtk-faq.sgml b/docs/faq/gtk-faq.sgml index ab8e05b8d1..dd3fc8b89c 100644 --- a/docs/faq/gtk-faq.sgml +++ b/docs/faq/gtk-faq.sgml @@ -1920,7 +1920,7 @@ drawing queue to be processed using something like:</para> <programlisting role="C"> -while (gtk_main_iteration()); +while (g_main_iteration(FALSE)); </programlisting> <para>inside you're function that changes the widget.</para> diff --git a/docs/faq/gtkfaq.sgml b/docs/faq/gtkfaq.sgml index e5f0bdf42a..198263fc04 100644 --- a/docs/faq/gtkfaq.sgml +++ b/docs/faq/gtkfaq.sgml @@ -1617,7 +1617,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. |