Skip to content

Commit 84a05b8

Browse files
robvanmieghemgavinandresen
authored andcommitted
QT: remove unused parameter
1 parent 215475a commit 84a05b8

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/qt/bitcoingui.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ BitcoinGUI::BitcoinGUI(const NetworkStyle *networkStyle, QWidget *parent) :
151151

152152
// Create actions for the toolbar, menu bar and tray/dock icon
153153
// Needs walletFrame to be initialized
154-
createActions(networkStyle);
154+
createActions();
155155

156156
// Create application menu bar
157157
createMenuBar();
@@ -243,7 +243,7 @@ BitcoinGUI::~BitcoinGUI()
243243
delete rpcConsole;
244244
}
245245

246-
void BitcoinGUI::createActions(const NetworkStyle *networkStyle)
246+
void BitcoinGUI::createActions()
247247
{
248248
QActionGroup *tabGroup = new QActionGroup(this);
249249

src/qt/bitcoingui.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class BitcoinGUI : public QMainWindow
118118
int spinnerFrame;
119119

120120
/** Create the main UI actions. */
121-
void createActions(const NetworkStyle *networkStyle);
121+
void createActions();
122122
/** Create the menu bar and sub-menus. */
123123
void createMenuBar();
124124
/** Create the toolbars */

0 commit comments

Comments
 (0)