From c1cbc28d6b3e898d0ca137369cd7accfbc1bc409 Mon Sep 17 00:00:00 2001 From: Nick Treleaven Date: Sun, 27 Sep 2009 12:06:08 +0000 Subject: [PATCH] Warn that plugin_configure_single() does not integrate as well with the multiple-plugin dialog. git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@4242 ea778897-0a13-0410-b9d1-a72fbfd435f5 --- doc/pluginsymbols.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/pluginsymbols.c b/doc/pluginsymbols.c index 7e830c40..beb2b060 100644 --- a/doc/pluginsymbols.c +++ b/doc/pluginsymbols.c @@ -88,7 +88,8 @@ GtkWidget *plugin_configure(GtkDialog *dialog); /** Called when a plugin should show a preferences dialog, if plugin_configure() has not been * implemented. - * @note It's better to implement plugin_configure() instead, but this is simpler. + * @warning It's better to implement plugin_configure() instead, but this is simpler. + * This does not integrate as well with the multiple-plugin dialog. * @param parent Pass this as the parent widget if showing a dialog. * @see plugin_configure(). */ void plugin_configure_single(GtkWidget *parent);