diff options
author | Neil <nyamatongwe@gmail.com> | 2021-10-26 08:12:40 +1100 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-10-26 08:12:40 +1100 |
commit | 947d0a3b4031be0e6881b12e92df751675faabe8 (patch) | |
tree | 5a045dc8211f4f208062b405d02ae28969d504b5 /qt/ScintillaEditBase/PlatQt.cpp | |
parent | a892e1ffca62df1b8400e339750c91c4fc6c65bd (diff) | |
download | scintilla-mirror-947d0a3b4031be0e6881b12e92df751675faabe8.tar.gz |
Don't set default values for parameters when overriding, only in base class.
Diffstat (limited to 'qt/ScintillaEditBase/PlatQt.cpp')
-rw-r--r-- | qt/ScintillaEditBase/PlatQt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt/ScintillaEditBase/PlatQt.cpp b/qt/ScintillaEditBase/PlatQt.cpp index e346acb9a..96b05a855 100644 --- a/qt/ScintillaEditBase/PlatQt.cpp +++ b/qt/ScintillaEditBase/PlatQt.cpp @@ -944,7 +944,7 @@ public: PRectangle GetDesiredRect() override; int CaretFromEdge() override; void Clear() noexcept override; - void Append(char *s, int type = -1) override; + void Append(char *s, int type) override; int Length() override; void Select(int n) override; int GetSelection() override; |