summaryrefslogtreecommitdiff
path: root/gtk2_ardour/midi_channel_selector.h
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-07-17 04:55:52 +0200
committerRobin Gareus <robin@gareus.org>2017-07-17 21:06:04 +0200
commitf9e5e4360e54f5ff5327b4384ee451d86f8dec91 (patch)
tree6ae86878b9d7db86c101df33559ffec913d9ed19 /gtk2_ardour/midi_channel_selector.h
parentb5e9451bc7be12acc5d81c55cdaa6545837f3181 (diff)
Move more Gtkmm2ext widgets into libwidget
Diffstat (limited to 'gtk2_ardour/midi_channel_selector.h')
-rw-r--r--gtk2_ardour/midi_channel_selector.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk2_ardour/midi_channel_selector.h b/gtk2_ardour/midi_channel_selector.h
index 7f1281d7d0..c7c754c2b7 100644
--- a/gtk2_ardour/midi_channel_selector.h
+++ b/gtk2_ardour/midi_channel_selector.h
@@ -30,7 +30,7 @@
#include "gtkmm/radiobutton.h"
#include "gtkmm/label.h"
-#include "gtkmm2ext/stateful_button.h"
+#include "widgets/stateful_button.h"
#include "ardour/types.h"
@@ -53,11 +53,11 @@ public:
protected:
virtual void button_toggled(Gtk::ToggleButton* button, uint8_t button_nr) = 0;
- Gtk::Label _button_labels[4][4];
- Gtkmm2ext::StatefulToggleButton _buttons[4][4];
- int _recursion_counter;
+ Gtk::Label _button_labels[4][4];
+ ArdourWidgets::StatefulToggleButton _buttons[4][4];
+ int _recursion_counter;
- bool was_clicked (GdkEventButton*);
+ bool was_clicked (GdkEventButton*);
};
class SingleMidiChannelSelector : public MidiChannelSelector