summaryrefslogtreecommitdiffstats
path: root/scintilla/src/Style.h
diff options
context:
space:
mode:
Diffstat (limited to 'scintilla/src/Style.h')
-rw-r--r--scintilla/src/Style.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/scintilla/src/Style.h b/scintilla/src/Style.h
index 5f520e7..a4be6d9 100644
--- a/scintilla/src/Style.h
+++ b/scintilla/src/Style.h
@@ -33,11 +33,11 @@ struct FontSpecification {
// Just like Font but only has a copy of the FontID so should not delete it
class FontAlias : public Font {
- // Private so FontAlias objects can not be copied
- FontAlias(const FontAlias &);
+ // Private so FontAlias objects can not be assigned except for intiialization
FontAlias &operator=(const FontAlias &);
public:
FontAlias();
+ FontAlias(const FontAlias &);
virtual ~FontAlias();
void MakeAlias(Font &fontOrigin);
void ClearFont();