SF.net SVN: geany: [2234] trunk

eht16 at users.sourceforge.net eht16 at xxxxx
Thu Feb 7 14:49:13 UTC 2008


Revision: 2234
          http://geany.svn.sourceforge.net/geany/?rev=2234&view=rev
Author:   eht16
Date:     2008-02-07 06:49:01 -0800 (Thu, 07 Feb 2008)

Log Message:
-----------
Use a better check for PLAT_GTK_WIN32 (backport from Scintilla CVS).

Modified Paths:
--------------
    trunk/ChangeLog
    trunk/scintilla/include/Platform.h

Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog	2008-02-07 14:19:45 UTC (rev 2233)
+++ trunk/ChangeLog	2008-02-07 14:49:01 UTC (rev 2234)
@@ -1,6 +1,8 @@
 2008-02-07  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>
 
  * plugins/Makefile.am: Fix typo (thanks Slava Semushin for reporting).
+ * scintilla/include/Platform.h:
+   Use a better check for PLAT_GTK_WIN32 (backport from Scintilla CVS).
 
 
 2008-02-06  Enrico Tröger  <enrico(dot)troeger(at)uvena(dot)de>

Modified: trunk/scintilla/include/Platform.h
===================================================================
--- trunk/scintilla/include/Platform.h	2008-02-07 14:19:45 UTC (rev 2233)
+++ trunk/scintilla/include/Platform.h	2008-02-07 14:49:01 UTC (rev 2234)
@@ -33,7 +33,7 @@
 #undef PLAT_GTK
 #define PLAT_GTK 1
 
-#ifdef G_OS_WIN32
+#if defined(__WIN32__) || defined(_MSC_VER)
 #undef PLAT_GTK_WIN32
 #define PLAT_GTK_WIN32 1
 #endif


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.



More information about the Commits mailing list