diff options
| author | nyamatongwe <devnull@localhost> | 2011-09-06 15:49:25 +1000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2011-09-06 15:49:25 +1000 |
| commit | 3566df9341e751247e67db417910083227e692d5 (patch) | |
| tree | ad26dcca57c522256a1ad6cee8d705a08cdfd8c0 /gtk/PlatGTK.cxx | |
| parent | 592a3f47aab8752fe54ed7223c40cd581e829700 (diff) | |
| download | scintilla-mirror-3566df9341e751247e67db417910083227e692d5.tar.gz | |
Always use Cairo for drawing.
Diffstat (limited to 'gtk/PlatGTK.cxx')
| -rw-r--r-- | gtk/PlatGTK.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 39dba1d71..8fe55145a 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -43,9 +43,7 @@ #define IS_WIDGET_FOCUSSED(w) (GTK_WIDGET_HAS_FOCUS(w)) #endif -#if GTK_CHECK_VERSION(2,22,0) #define USE_CAIRO 1 -#endif #ifdef USE_CAIRO @@ -2961,7 +2959,7 @@ bool Platform::IsDBCSLeadByte(int codePage, char ch) { // Shift_jis return ((uch >= 0x81) && (uch <= 0x9F)) || ((uch >= 0xE0) && (uch <= 0xFC)); - // Lead bytes F0 to FC may be a Microsoft addition. + // Lead bytes F0 to FC may be a Microsoft addition. case 936: // GBK return (uch >= 0x81) && (uch <= 0xFE); |
