Qt/SettingsWindow: Add SelectGeneralPane method

This commit is contained in:
spycrab
2017-08-26 20:54:37 +02:00
parent 0d07821935
commit 8580e159fe
2 changed files with 8 additions and 1 deletions

View File

@ -13,9 +13,11 @@ class SettingsWindow final : public QDialog
Q_OBJECT
public:
explicit SettingsWindow(QWidget* parent = nullptr);
void SelectGeneralPane();
void SelectAudioPane();
private:
ListTabWidget* m_tabs;
int m_audio_pane_index = -1;
int m_general_pane_index = -1;
};