changeset 13895:8f910263b4bb

[gaim-migrate @ 16380] Merge SVN revision #16379 from v2_0_0 to trunk Original commit message (by LSchiere): iwkse in #gaim brought it to my attention that the example code in the C Plugin Howto won't compile. It won't compile because GAIM_WEBSITE is defined in internal.h, which we don't want plugin authors including, and which isn't included in the sample code. I decided it would be a good thing if the example code compiled, so I changed it. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 30 Jun 2006 16:23:56 +0000
parents b9404076ef67
children a621329e8c85
files doc/C-HOWTO.dox
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/doc/C-HOWTO.dox	Fri Jun 30 06:58:17 2006 +0000
+++ b/doc/C-HOWTO.dox	Fri Jun 30 16:23:56 2006 +0000
@@ -67,7 +67,7 @@
 	"Hello World Plugin",
 	"Hello World Plugin",
 	NULL,
-	GAIM_WEBSITE,
+	"http://www.helloworld.tld",
 
 	plugin_load,
 	NULL,
@@ -197,7 +197,7 @@
 	NULL,                         /* This is where you can put your name and
                                      email address.  (You are the author right?)
                                    */
-	GAIM_WEBSITE,                 /* This is the website for the plugin.  This
+	"http://www.helloworld.tld",  /* This is the website for the plugin.  This
                                      is helpful if users find bugs in your
                                      plugin so they can help to bring them to
                                      your attention.