diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-12-06 20:07:50 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2016-12-06 20:07:50 +0100 |
commit | e3ad180e9452be85ff35a10b4bb4a0dbf1ac11b4 (patch) | |
tree | f642b6f5cb61b6e8c85250ab317640ef384d810b /plugingui/lineedit.h | |
parent | 15f98dfc9858cd11d616cf1dfdd1a1e50a7a48db (diff) |
Make destructors virtual as appropriate.
Diffstat (limited to 'plugingui/lineedit.h')
-rw-r--r-- | plugingui/lineedit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugingui/lineedit.h b/plugingui/lineedit.h index d5d68b6..76babcc 100644 --- a/plugingui/lineedit.h +++ b/plugingui/lineedit.h @@ -41,7 +41,7 @@ class LineEdit { public: LineEdit(Widget *parent); - ~LineEdit(); + virtual ~LineEdit(); bool isFocusable() override { return true; } |