diff options
| author | Joel Klinghed <the_jk@yahoo.com> | 2017-07-24 23:43:27 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@yahoo.com> | 2017-07-24 23:43:27 +0200 |
| commit | c729d3b38ea241af6c1cd0561cecb115239d4f55 (patch) | |
| tree | a3281296deaa0aa81ddb016204338284aae1ac91 /src/gui_form.hh | |
| parent | 2dbfb58efe5e53b56bfda3ed21a3e41562205437 (diff) | |
Add missing = 0 to make method abstract
Diffstat (limited to 'src/gui_form.hh')
| -rw-r--r-- | src/gui_form.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_form.hh b/src/gui_form.hh index 190cf4e..d154518 100644 --- a/src/gui_form.hh +++ b/src/gui_form.hh @@ -14,7 +14,7 @@ public: public: virtual ~Listener() {} - virtual bool about_to_close(GuiForm* form); + virtual bool about_to_close(GuiForm* form) = 0; protected: Listener() {} |
