From: <rl...@us...> - 2006-06-30 16:24:05
|
Revision: 16380 Author: rlaager Date: 2006-06-30 09:23:56 -0700 (Fri, 30 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16380&view=rev Log Message: ----------- 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. ViewCVS Links: ------------- http://svn.sourceforge.net/gaim/?rev=16379&view=rev Modified Paths: -------------- trunk/doc/C-HOWTO.dox Modified: trunk/doc/C-HOWTO.dox =================================================================== --- trunk/doc/C-HOWTO.dox 2006-06-30 14:13:35 UTC (rev 16379) +++ trunk/doc/C-HOWTO.dox 2006-06-30 16:23:56 UTC (rev 16380) @@ -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. |