[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]

[vidalia-svn] r1755: Whoops. I forgot an #include in r1753. (Reported by DJHasis) (in trunk: . src/util)



Author: edmanm
Date: 2007-05-29 21:24:12 -0400 (Tue, 29 May 2007)
New Revision: 1755

Modified:
   trunk/
   trunk/src/util/file.cpp
Log:
 r1874@adrastea:  edmanm | 2007-05-29 21:24:04 -0400
 Whoops. I forgot an #include in r1753. (Reported by DJHasis)



Property changes on: trunk
___________________________________________________________________
 svk:merge ticket from /vidalia/local/trunk [r1874] on 54b3572a-7227-0410-958f-53ecd705b71a

Modified: trunk/src/util/file.cpp
===================================================================
--- trunk/src/util/file.cpp	2007-05-26 05:45:31 UTC (rev 1754)
+++ trunk/src/util/file.cpp	2007-05-30 01:24:12 UTC (rev 1755)
@@ -29,7 +29,11 @@
 #include <QFile>
 #include "file.h"
 
+#if defined(Q_OS_WIN32)
+#include <util/win32.h>
+#endif
 
+
 /** Create an empty file named <b>filename</b>. if <b>createdir</b> is true,
  * then the full path to <b>filename</b> will be created. Returns true on 
  * success, or false on error and <b>errmsg</b> will be set. */