diff options
| author | Neil <nyamatongwe@gmail.com> | 2019-03-19 09:04:39 +1100 | 
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2019-03-19 09:04:39 +1100 | 
| commit | 5c9c8f89c962785bcaac84e9a9c22d7976a03784 (patch) | |
| tree | 548dc70bf319b7784845b7f3f6f2de63a402fc4e /win32 | |
| parent | 7e4bd49b1315de495ad37ed7d19897abdcf44b94 (diff) | |
| download | scintilla-mirror-5c9c8f89c962785bcaac84e9a9c22d7976a03784.tar.gz | |
Backport: Make destructors public to avoid warnings.
Backport of changeset 7323:09b4042d7092.
Diffstat (limited to 'win32')
| -rw-r--r-- | win32/ScintillaWin.cxx | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index b1f0412bd..6561da916 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -303,7 +303,7 @@ class ScintillaWin :  	ScintillaWin(ScintillaWin &&) = delete;  	ScintillaWin &operator=(const ScintillaWin &) = delete;  	ScintillaWin &operator=(ScintillaWin &&) = delete; -	~ScintillaWin() override; +	// ~ScintillaWin() in public section  	void Init();  	void Finalise() override; @@ -399,6 +399,8 @@ class ScintillaWin :  	sptr_t GetText(uptr_t wParam, sptr_t lParam);  public: +	~ScintillaWin() override; +  	// Public for benefit of Scintilla_DirectFunction  	sptr_t WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) override; | 
