diff options
author | nyamatongwe <devnull@localhost> | 2000-06-04 01:44:37 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-06-04 01:44:37 +0000 |
commit | daeda27f379ee9cf5f1e7b882273ac51078e790a (patch) | |
tree | dd8aef584f1588230f223378303dbeccdb688a04 /gtk/PlatGTK.cxx | |
parent | dc014eaca8ae548be34c4bb24db151593db46b88 (diff) | |
download | scintilla-mirror-daeda27f379ee9cf5f1e7b882273ac51078e790a.tar.gz |
Ensured the UnicodeMode of each Surface is initialised.
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rw-r--r-- | gtk/PlatGTK.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 9c56126a7..9b16363c7 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -176,8 +176,8 @@ void Font::Release() { gdk_font_unref(id); id = 0; } - -Surface::Surface() : drawable(0), gc(0), ppixmap(0), + +Surface::Surface() : unicodeMode(false), drawable(0), gc(0), ppixmap(0), x(0), y(0), inited(false), createdGC(false) {} |