diff options
author | Colin Guthrie <cguthrie@mandriva.org> | 2009-03-16 21:06:33 +0000 |
---|---|---|
committer | Colin Guthrie <cguthrie@mandriva.org> | 2009-06-17 08:54:12 +0100 |
commit | cfa1cd3d49a89b0b69956035416190533f724961 (patch) | |
tree | 20c51e3ae52c2acd4ff899b9875df1dc8805759d /src/mainwindow.h | |
parent | 903c26bd4482ab23f12335207681ad17172a0814 (diff) |
Record in a map the combobox indexes vs. the sink/source indexes
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index 50a5956..48fcc76 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -103,8 +103,12 @@ public: }; DeviceColumns deviceColumns; + Glib::RefPtr<Gtk::ListStore> sinkTree; + std::map<uint32_t, uint32_t> sinkTreeIndexes; + Glib::RefPtr<Gtk::ListStore> sourceTree; + std::map<uint32_t, uint32_t> sourceTreeIndexes; protected: virtual void on_realize(); |