diff options
author | Neil <nyamatongwe@gmail.com> | 2014-06-22 19:14:49 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-06-22 19:14:49 +1000 |
commit | c6414481b0cdcb7a7d9b142a5085a620c9b2b565 (patch) | |
tree | 91aedf35b00d776cc8c2334ee7de851c1d4e4400 /src/Style.cxx | |
parent | 6245be90aad17b4920525bea08d5718992f56ddd (diff) | |
download | scintilla-mirror-c6414481b0cdcb7a7d9b142a5085a620c9b2b565.tar.gz |
Avoid warning from g++.
Diffstat (limited to 'src/Style.cxx')
-rw-r--r-- | src/Style.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Style.cxx b/src/Style.cxx index 4297fa7cc..10fc0d2bf 100644 --- a/src/Style.cxx +++ b/src/Style.cxx @@ -19,7 +19,7 @@ using namespace Scintilla; FontAlias::FontAlias() { } -FontAlias::FontAlias(const FontAlias &other) { +FontAlias::FontAlias(const FontAlias &other) : Font() { SetID(other.fid); } |