diff options
| author | João Barbosa <[email protected]> | 2019-10-11 01:50:49 +0100 |
|---|---|---|
| committer | João Barbosa <[email protected]> | 2019-10-15 13:46:34 +0100 |
| commit | 8019b6b150ff7444195a238470414c9deec5bf74 (patch) | |
| tree | 77654e46ea0477a01e0a077479e0c62d3ff5a897 /src/qt/rpcconsole.cpp | |
| parent | Merge #16983: doc: Add detailed info about Bitcoin Core files (diff) | |
| download | discoin-8019b6b150ff7444195a238470414c9deec5bf74.tar.xz discoin-8019b6b150ff7444195a238470414c9deec5bf74.zip | |
gui: Make RPCConsole::TabTypes an enum class
Diffstat (limited to 'src/qt/rpcconsole.cpp')
| -rw-r--r-- | src/qt/rpcconsole.cpp | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 4f6629bfe..3dd64c527 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -1268,22 +1268,24 @@ void RPCConsole::showOrHideBanTableIfRequired() void RPCConsole::setTabFocus(enum TabTypes tabType) { - ui->tabWidget->setCurrentIndex(tabType); + ui->tabWidget->setCurrentIndex(int(tabType)); } QString RPCConsole::tabTitle(TabTypes tab_type) const { - return ui->tabWidget->tabText(tab_type); + return ui->tabWidget->tabText(int(tab_type)); } QKeySequence RPCConsole::tabShortcut(TabTypes tab_type) const { switch (tab_type) { - case TAB_INFO: return QKeySequence(Qt::CTRL + Qt::Key_I); - case TAB_CONSOLE: return QKeySequence(Qt::CTRL + Qt::Key_T); - case TAB_GRAPH: return QKeySequence(Qt::CTRL + Qt::Key_N); - case TAB_PEERS: return QKeySequence(Qt::CTRL + Qt::Key_P); - } + case TabTypes::INFO: return QKeySequence(Qt::CTRL + Qt::Key_I); + case TabTypes::CONSOLE: return QKeySequence(Qt::CTRL + Qt::Key_T); + case TabTypes::GRAPH: return QKeySequence(Qt::CTRL + Qt::Key_N); + case TabTypes::PEERS: return QKeySequence(Qt::CTRL + Qt::Key_P); + } // no default case, so the compiler can warn about missing cases + + assert(false); } void RPCConsole::updateAlerts(const QString& warnings) |