aboutsummaryrefslogtreecommitdiffhomepage
path: root/gtk
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2000-05-15 14:19:52 +0000
committernyamatongwe <devnull@localhost>2000-05-15 14:19:52 +0000
commite77cc3907af16f9393f745423e39540436d85444 (patch)
treeb5e3048d8416aefd2a461149fbb755f71fc49f39 /gtk
parentbfd29c74a006b38b3c722145a94e4af05ebe9603 (diff)
downloadscintilla-mirror-e77cc3907af16f9393f745423e39540436d85444.tar.gz
Support for different character sets for each style.
Diffstat (limited to 'gtk')
-rw-r--r--gtk/PlatGTK.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx
index 57004f19f..9c56126a7 100644
--- a/gtk/PlatGTK.cxx
+++ b/gtk/PlatGTK.cxx
@@ -143,7 +143,8 @@ Font::Font() : id(0) {}
Font::~Font() {}
-void Font::Create(const char *faceName, int size, bool bold, bool italic) {
+void Font::Create(const char *faceName, int characterSet, int size, bool bold, bool italic) {
+ // TODO: take notice of characterSet
Release();
char fontspec[300];
fontspec[0] = '\0';