diff options
| author | Rob Van Mieghem <[email protected]> | 2015-03-03 08:42:52 +0100 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2015-03-05 12:20:49 -0500 |
| commit | 84a05b843b8ab704266289de67c9779ad733a196 (patch) | |
| tree | 98b09c74d7a7b72de4ad9d1d8bcdcc133a46cd6c /src | |
| parent | Merge pull request #5830 (diff) | |
| download | discoin-84a05b843b8ab704266289de67c9779ad733a196.tar.xz discoin-84a05b843b8ab704266289de67c9779ad733a196.zip | |
QT: remove unused parameter
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/bitcoingui.cpp | 4 | ||||
| -rw-r--r-- | src/qt/bitcoingui.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 5c5da6dba..a0dcb46e2 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -151,7 +151,7 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) : // Create actions for the toolbar, menu bar and tray/dock icon // Needs walletFrame to be initialized - createActions(networkStyle); + createActions(); // Create application menu bar createMenuBar(); @@ -243,7 +243,7 @@ BitcoinGUI::~BitcoinGUI() delete rpcConsole; } -void BitcoinGUI::createActions(const NetworkStyle *networkStyle) +void BitcoinGUI::createActions() { QActionGroup *tabGroup = new QActionGroup(this); diff --git a/src/qt/bitcoingui.h b/src/qt/bitcoingui.h index 3216a7398..fd776d63f 100644 --- a/src/qt/bitcoingui.h +++ b/src/qt/bitcoingui.h @@ -118,7 +118,7 @@ private: int spinnerFrame; /** Create the main UI actions. */ - void createActions(const NetworkStyle *networkStyle); + void createActions(); /** Create the menu bar and sub-menus. */ void createMenuBar(); /** Create the toolbars */ |