Kaydet (Commit) 3e4368ed authored tarafından Enrico Tröger's avatar Enrico Tröger

Fix definition of PLAT_GTK_WIN32 on Windows to fix Copy&Paste problems.


git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@2226 ea778897-0a13-0410-b9d1-a72fbfd435f5
üst e5af6c9c
2008-02-05 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>
* scintilla/include/Platform.h: Fix definition of PLAT_GTK_WIN32 on
Windows to fix Copy&Paste problems.
2008-02-04 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
* doc/geany.txt, doc/geany.html:
......
......@@ -33,7 +33,7 @@
#undef PLAT_GTK
#define PLAT_GTK 1
#ifdef _MSC_VER
#ifdef G_OS_WIN32
#undef PLAT_GTK_WIN32
#define PLAT_GTK_WIN32 1
#endif
......@@ -122,7 +122,7 @@ public:
}
int Width() { return right - left; }
int Height() { return bottom - top; }
bool Empty() {
bool Empty() {
return (Height() <= 0) || (Width() <= 0);
}
};
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment