From: <rl...@us...> - 2006-09-18 02:54:01
|
Revision: 17301 http://svn.sourceforge.net/gaim/?rev=17301&view=rev Author: rlaager Date: 2006-09-17 19:53:54 -0700 (Sun, 17 Sep 2006) Log Message: ----------- SF Patch #1560154 from Patrick Cheung This changes two #include <foo.h> lines to #include "foo.h" for local headers. Modified Paths: -------------- trunk/COPYRIGHT trunk/libgaim/imgstore.c Modified: trunk/COPYRIGHT =================================================================== --- trunk/COPYRIGHT 2006-09-18 01:13:07 UTC (rev 17300) +++ trunk/COPYRIGHT 2006-09-18 02:53:54 UTC (rev 17301) @@ -49,6 +49,7 @@ Cerulean Studios, LLC Jonathan Champ Christophe Chapuis +Patrick Cheung Ka-Hing Cheung Sadrul Habib Chowdhury Brian Chu Modified: trunk/libgaim/imgstore.c =================================================================== --- trunk/libgaim/imgstore.c 2006-09-18 01:13:07 UTC (rev 17300) +++ trunk/libgaim/imgstore.c 2006-09-18 02:53:54 UTC (rev 17301) @@ -25,8 +25,8 @@ */ #include <glib.h> -#include <debug.h> -#include <imgstore.h> +#include "debug.h" +#include "imgstore.h" static GSList *imgstore = NULL; static int nextid = 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |