summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/gui/BreadCrumbs.cpp3
-rw-r--r--src/gui/Window.hpp4
2 files changed, 3 insertions, 4 deletions
diff --git a/src/gui/BreadCrumbs.cpp b/src/gui/BreadCrumbs.cpp
index d641f5ac..a4a1b2fb 100644
--- a/src/gui/BreadCrumbs.cpp
+++ b/src/gui/BreadCrumbs.cpp
@@ -30,8 +30,7 @@ namespace gui {
using std::string;
BreadCrumbs::BreadCrumbs(App& app)
- : Gtk::HBox()
- , _active_path("/")
+ : _active_path("/")
, _full_path("/")
, _enable_signal(true)
{
diff --git a/src/gui/Window.hpp b/src/gui/Window.hpp
index 5f49bc10..ab3586fc 100644
--- a/src/gui/Window.hpp
+++ b/src/gui/Window.hpp
@@ -33,7 +33,7 @@ class App;
class Window : public Gtk::Window
{
public:
- Window() : Gtk::Window(), _app(nullptr) {}
+ Window() : _app(nullptr) {}
explicit Window(BaseObjectType* cobject) : Gtk::Window(cobject), _app(nullptr) {}
virtual void init_window(App& app) { _app = &app; }
@@ -57,7 +57,7 @@ public:
class Dialog : public Gtk::Dialog
{
public:
- Dialog() : Gtk::Dialog(), _app(nullptr) {}
+ Dialog() : _app(nullptr) {}
explicit Dialog(BaseObjectType* cobject) : Gtk::Dialog(cobject), _app(nullptr) {}
virtual void init_dialog(App& app) { _app = &app; }