From 41a34f74ed1cf16428533724c5eb6f381d813850 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 16 Apr 2017 20:50:30 +0200 Subject: Make FileBrowser a Dialog. --- plugingui/filebrowser.cc | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) (limited to 'plugingui/filebrowser.cc') diff --git a/plugingui/filebrowser.cc b/plugingui/filebrowser.cc index 6ac9d3e..50e34c3 100644 --- a/plugingui/filebrowser.cc +++ b/plugingui/filebrowser.cc @@ -46,10 +46,11 @@ #include #endif -namespace GUI { +namespace GUI +{ -FileBrowser::FileBrowser(Widget *parent) - : Widget(parent) +FileBrowser::FileBrowser(Widget* parent) + : Dialog(parent, true) , dir(Directory::cwd()) , lbl_path(this) , lineedit(this) @@ -78,10 +79,6 @@ FileBrowser::FileBrowser(Widget *parent) changeDir(); } -FileBrowser::~FileBrowser() -{ -} - void FileBrowser::setPath(const std::string& path) { INFO(filebrowser, "Setting path to '%s'\n", path.c_str()); @@ -102,7 +99,7 @@ void FileBrowser::setPath(const std::string& path) void FileBrowser::resize(std::size_t width, std::size_t height) { - Widget::resize(width, height); + Dialog::resize(width, height); int offset = 0; int brd = 5; // border -- cgit v1.2.3