GNOME Bugzilla – Bug 425006
Add a note about the hooks in the AboutDialog
Last modified: 2007-04-04 09:27:13 UTC
+++ This bug was initially created as a clone of Bug #425004 +++ [this is also a bug upstream, but the perl bindings should add a note too.] the website and email links are made clickable only if the url and email hooks have been set before setting the 'website' and 'email' properties; if you set the hooks after that, the links won't be clickable. the documentation should mention that the order is important, so a paragraph should be added, either in the main class description or in the hook setters function description: 'When setting the website and email hooks for the Gtk2::AboutDialog widget, you should remember that the order is important: you should set the hook functions before setting the website and email URL properties, like this: $about_dialog->set_url_hook(\&launch_web_browser); $about_dialog->set_website($app_website); otherwise the AboutDialog widget will not display the website and the email addresses as clickable.'
Created attachment 85632 [details] [review] patch fixing the documentation
Patch looks good to me. Please commit.
2007-04-04 Emmanuele Bassi <ebassi@gnome.org> * xs/GtkAboutDialog.xs: Add a note about the order of the webmail and email properties and the url and email hook functions. (#425006)