GNOME Bugzilla – Bug 471143
HTML in Example Code
Last modified: 2007-11-09 16:42:44 UTC
The excerpt below is from http://www.gtkmm.org/docs/gtkmm-2.4/docs/reference/html/classGtk_1_1Dialog.html Something is going wrong with the page generation, as it appears to be mixing HTML with the code. <tt>int</tt> result = dialog.run(); switch (result) { case GTK_RESPONSE_ACCEPT: do_application_specific_something (<!-- -->); break; default: do_nothing_since_dialog_was_cancelled (<!-- -->); break; }
Thanks. Fixed in svn trunk: 2007-11-05 Murray Cumming <murrayc@murrayc.com> * gtk/src/gtk_docs_override.xml: Made changes to the gtk_dialog_run() override to avoid strange markup in the generated HTML. Bug #471143 (Andrew Medico) * gtk/src/gtk_signals.defs: Corrected the GtkWidget:grab-broken-event definition to fix the build after my previous commit.