After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 471143 - HTML in Example Code
HTML in Example Code
Status: RESOLVED FIXED
Product: gtkmm
Classification: Bindings
Component: documentation
2.4
Other All
: Normal normal
: ---
Assigned To: gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2007-08-28 14:33 UTC by Andrew Medico
Modified: 2007-11-09 16:42 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Andrew Medico 2007-08-28 14:33:00 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 (&lt;!-- --&gt;);
 break;
 default:
 do_nothing_since_dialog_was_cancelled (&lt;!-- --&gt;);
 break;
 }
Comment 1 Murray Cumming 2007-11-05 17:37:40 UTC
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.