From daeda27f379ee9cf5f1e7b882273ac51078e790a Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 4 Jun 2000 01:44:37 +0000 Subject: Ensured the UnicodeMode of each Surface is initialised. --- doc/ScintillaRelated.html | 6 +++--- gtk/PlatGTK.cxx | 4 ++-- win32/PlatWin.cxx | 1 + 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/doc/ScintillaRelated.html b/doc/ScintillaRelated.html index d439e86c4..83398f371 100644 --- a/doc/ScintillaRelated.html +++ b/doc/ScintillaRelated.html @@ -55,7 +55,7 @@

GTK+, the GIMP Toolkit, contains a rich text editing widget.
- Gedit is an editor for GTK+/GNOME.
+ Gedit is an editor for GTK+/GNOME.
GtkEditor is a source code editing widget based on the GTK+ text widget.
GIDE is an IDE based on GTK+.
@@ -66,10 +66,10 @@ CodeGuru has source code for several Win32 MFC based editors.

- mwEdit is a Win32 edit control written + SynEdit is a Win32 edit control written in Delphi.

- SourceView is a commercial editing + SourceView is a commercial editing component for Win32.

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) {} diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index e9174e9df..464bef524 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -150,6 +150,7 @@ void Font::Release() { } Surface::Surface() : + unicodeMode(false), hdc(0), hdcOwned(false), pen(0), penOld(0), brush(0), brushOld(0), -- cgit v1.2.3