Browse Source

QT: remove unused parameter

0.13
Rob Van Mieghem 9 years ago committed by Gavin Andresen
parent
commit
84a05b843b
No known key found for this signature in database
GPG Key ID: 7588242FBE38D3A8
  1. 4
      src/qt/bitcoingui.cpp
  2. 2
      src/qt/bitcoingui.h

4
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 // Create actions for the toolbar, menu bar and tray/dock icon
// Needs walletFrame to be initialized // Needs walletFrame to be initialized
createActions(networkStyle); createActions();
// Create application menu bar // Create application menu bar
createMenuBar(); createMenuBar();
@ -243,7 +243,7 @@ BitcoinGUI::~BitcoinGUI()
delete rpcConsole; delete rpcConsole;
} }
void BitcoinGUI::createActions(const NetworkStyle *networkStyle) void BitcoinGUI::createActions()
{ {
QActionGroup *tabGroup = new QActionGroup(this); QActionGroup *tabGroup = new QActionGroup(this);

2
src/qt/bitcoingui.h

@ -118,7 +118,7 @@ private:
int spinnerFrame; int spinnerFrame;
/** Create the main UI actions. */ /** Create the main UI actions. */
void createActions(const NetworkStyle *networkStyle); void createActions();
/** Create the menu bar and sub-menus. */ /** Create the menu bar and sub-menus. */
void createMenuBar(); void createMenuBar();
/** Create the toolbars */ /** Create the toolbars */

Loading…
Cancel
Save