diff options
| author | nyamatongwe <unknown> | 2008-12-16 11:11:29 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2008-12-16 11:11:29 +0000 |
| commit | f797cc6b8ca81530565c989d40ac9bc2b1952465 (patch) | |
| tree | 57efc71d80bc020684ca94dce15b006207ecfd93 /gtk | |
| parent | 5d66605fc796320ed2915a4c319cda9abfb1dee1 (diff) | |
| download | scintilla-mirror-f797cc6b8ca81530565c989d40ac9bc2b1952465.tar.gz | |
Namespace work for OS X / XCode compatibility.
Diffstat (limited to 'gtk')
| -rw-r--r-- | gtk/PlatGTK.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 486ce896c..03bb57d26 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -677,7 +677,13 @@ void Font::Release() { id = 0; } -class SurfaceImpl : public Surface { +// Required on OS X +#ifdef SCI_NAMESPACE +class Scintilla::SurfaceImpl : public Surface +#else +class SurfaceImpl : public Surface +#endif +{ encodingType et; GdkDrawable *drawable; GdkGC *gc; |
