diff options
author | Neil <nyamatongwe@gmail.com> | 2021-05-16 09:31:56 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2021-05-16 09:31:56 +1000 |
commit | 90942f40527c251720416c6e754ad017e8a65f04 (patch) | |
tree | c8d830cd39a9dbd0f46588d683903d296e5f8797 | |
parent | 32b3fe6a08b19cdb35d376fc73aa8adcd5f525bf (diff) | |
download | scintilla-mirror-90942f40527c251720416c6e754ad017e8a65f04.tar.gz |
Remove untenable noexcept as RGBAImageSet constructor can throw.
-rw-r--r-- | win32/PlatWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index f56b14f8f..21a5180ac 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -2942,7 +2942,7 @@ class ListBoxX : public ListBox { static constexpr Point ImageInset {1, 0}; // Padding around image public: - ListBoxX() noexcept : lineHeight(10), fontCopy{}, technology(0), lb{}, unicodeMode(false), + ListBoxX() : lineHeight(10), fontCopy{}, technology(0), lb{}, unicodeMode(false), desiredVisibleRows(9), maxItemCharacters(0), aveCharWidth(8), parent(nullptr), ctrlID(0), dpi(USER_DEFAULT_SCREEN_DPI), delegate(nullptr), |