summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-05-11 11:49:28 -0400
committerDavid Robillard <d@drobilla.net>2021-05-11 13:31:42 -0400
commit37ede19b4d1e924f954d8b16d3e071a4768ce278 (patch)
tree35b728cb1dd9bc686422050ce65ee09151a9de8e
parent5a3ee2b3358e147aeb0cabced90991a5ae3b5870 (diff)
downloadpatchage-37ede19b4d1e924f954d8b16d3e071a4768ce278.tar.gz
patchage-37ede19b4d1e924f954d8b16d3e071a4768ce278.tar.bz2
patchage-37ede19b4d1e924f954d8b16d3e071a4768ce278.zip
Remove unused member variable
-rw-r--r--src/Patchage.cpp1
-rw-r--r--src/Patchage.hpp3
2 files changed, 0 insertions, 4 deletions
diff --git a/src/Patchage.cpp b/src/Patchage.cpp
index 96678a4..bb6b4a8 100644
--- a/src/Patchage.cpp
+++ b/src/Patchage.cpp
@@ -166,7 +166,6 @@ port_order(const GanvPort* a, const GanvPort* b, void*)
Patchage::Patchage(Options options)
: _xml(UIFile::open("patchage"))
- , _gtk_main(nullptr)
, INIT_WIDGET(_about_win)
, INIT_WIDGET(_main_scrolledwin)
, INIT_WIDGET(_main_win)
diff --git a/src/Patchage.hpp b/src/Patchage.hpp
index ecc1256..38917cf 100644
--- a/src/Patchage.hpp
+++ b/src/Patchage.hpp
@@ -52,7 +52,6 @@ class Builder;
class ComboBox;
class ImageMenuItem;
class Label;
-class Main;
class MenuBar;
class MenuItem;
class Paned;
@@ -166,8 +165,6 @@ protected:
std::unique_ptr<AudioDriver> _jack_driver;
Configuration _conf;
- Gtk::Main* _gtk_main;
-
BufferSizeColumns _buf_size_columns;
Widget<Gtk::AboutDialog> _about_win;