Revision: 16379
Author: lschiere
Date: 2006-06-30 07:13:35 -0700 (Fri, 30 Jun 2006)
ViewCVS: http://svn.sourceforge.net/gaim/?rev=16379&view=rev
Log Message:
-----------
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.
Modified Paths:
--------------
branches/v2_0_0/doc/C-HOWTO.dox
Modified: branches/v2_0_0/doc/C-HOWTO.dox
===================================================================
--- branches/v2_0_0/doc/C-HOWTO.dox 2006-06-30 06:58:38 UTC (rev 16378)
+++ branches/v2_0_0/doc/C-HOWTO.dox 2006-06-30 14:13:35 UTC (rev 16379)
@@ -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.
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|