diff options
| author | nyamatongwe <devnull@localhost> | 2000-05-15 14:19:52 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2000-05-15 14:19:52 +0000 |
| commit | e77cc3907af16f9393f745423e39540436d85444 (patch) | |
| tree | b5e3048d8416aefd2a461149fbb755f71fc49f39 /gtk/PlatGTK.cxx | |
| parent | bfd29c74a006b38b3c722145a94e4af05ebe9603 (diff) | |
| download | scintilla-mirror-e77cc3907af16f9393f745423e39540436d85444.tar.gz | |
Support for different character sets for each style.
Diffstat (limited to 'gtk/PlatGTK.cxx')
| -rw-r--r-- | gtk/PlatGTK.cxx | 3 |
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'; |
