diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-08-02 16:51:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-08-02 16:51:19 +0300 |
commit | 70a9ee7cc6a2402c33c3cdd33bc86f02fcb59ade (patch) | |
tree | b36e2984b41b251797670a7569d03138e7f863ac /src/gui/gui.cpp | |
parent | d0d872ffeff89facdd35ce358bd4d9b73cf8332c (diff) | |
download | plus-70a9ee7cc6a2402c33c3cdd33bc86f02fcb59ade.tar.gz plus-70a9ee7cc6a2402c33c3cdd33bc86f02fcb59ade.tar.bz2 plus-70a9ee7cc6a2402c33c3cdd33bc86f02fcb59ade.tar.xz plus-70a9ee7cc6a2402c33c3cdd33bc86f02fcb59ade.zip |
Draw each window in unit tests.
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index a4b704079..294f4fc89 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -71,8 +71,11 @@ #include "gui/fonts/font.h" +#include "gui/widgets/label.h" #include "gui/widgets/window.h" +#include "gui/widgets/tabs/tab.h" + #ifndef DYECMD #include "dragdrop.h" #else @@ -289,6 +292,8 @@ Gui::~Gui() setTop(nullptr); delete2(mFocusHandler); + Label::final(); + Tab::final(); } void Gui::logic() |