diff options
author | Neil <nyamatongwe@gmail.com> | 2017-05-21 23:28:17 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2017-05-21 23:28:17 +1000 |
commit | 08c0f029cc6630f147b1681d4864cc42f33be7cc (patch) | |
tree | 7fd2ccd81dbcd89a690ec106947a6e155d36c35f /src/ViewStyle.h | |
parent | f5709222a78870805711812cbfd6a65bbd4daf48 (diff) | |
download | scintilla-mirror-08c0f029cc6630f147b1681d4864cc42f33be7cc.tar.gz |
Use UniqueString to simplify FontNames.
Diffstat (limited to 'src/ViewStyle.h')
-rw-r--r-- | src/ViewStyle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ViewStyle.h b/src/ViewStyle.h index ad482c814..7210fa610 100644 --- a/src/ViewStyle.h +++ b/src/ViewStyle.h @@ -29,7 +29,7 @@ public: */ class FontNames { private: - std::vector<const char *> names; + std::vector<UniqueString> names; public: FontNames(); // FontNames objects can not be copied. |