# HG changeset patch # User Richard Laager # Date 1151684636 0 # Node ID 8f910263b4bb03891f572c2a0737a18b66a29200 # Parent b9404076ef677dc0d36f5e33b8040144bd645a88 [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 diff -r b9404076ef67 -r 8f910263b4bb doc/C-HOWTO.dox --- 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.