summaryrefslogtreecommitdiff
path: root/src/gui_form.hh
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@yahoo.com>2017-07-24 23:43:27 +0200
committerJoel Klinghed <the_jk@yahoo.com>2017-07-24 23:43:27 +0200
commitc729d3b38ea241af6c1cd0561cecb115239d4f55 (patch)
treea3281296deaa0aa81ddb016204338284aae1ac91 /src/gui_form.hh
parent2dbfb58efe5e53b56bfda3ed21a3e41562205437 (diff)
Add missing = 0 to make method abstract
Diffstat (limited to 'src/gui_form.hh')
-rw-r--r--src/gui_form.hh2
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() {}