@@ -248,7 +248,7 @@ void BitcoinGUI::createActions()
248
248
sendCoinsAction->setShortcut (QKeySequence (Qt::ALT + Qt::Key_2));
249
249
tabGroup->addAction (sendCoinsAction);
250
250
251
- sendCoinsMenuAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/send " ), sendCoinsAction->text (), this );
251
+ sendCoinsMenuAction = new QAction (sendCoinsAction->text (), this );
252
252
sendCoinsMenuAction->setStatusTip (sendCoinsAction->statusTip ());
253
253
sendCoinsMenuAction->setToolTip (sendCoinsMenuAction->statusTip ());
254
254
@@ -259,7 +259,7 @@ void BitcoinGUI::createActions()
259
259
receiveCoinsAction->setShortcut (QKeySequence (Qt::ALT + Qt::Key_3));
260
260
tabGroup->addAction (receiveCoinsAction);
261
261
262
- receiveCoinsMenuAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/receiving_addresses " ), receiveCoinsAction->text (), this );
262
+ receiveCoinsMenuAction = new QAction (receiveCoinsAction->text (), this );
263
263
receiveCoinsMenuAction->setStatusTip (receiveCoinsAction->statusTip ());
264
264
receiveCoinsMenuAction->setToolTip (receiveCoinsMenuAction->statusTip ());
265
265
@@ -287,48 +287,48 @@ void BitcoinGUI::createActions()
287
287
connect (historyAction, &QAction::triggered, this , &BitcoinGUI::gotoHistoryPage);
288
288
#endif // ENABLE_WALLET
289
289
290
- quitAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/quit " ), tr (" E&xit" ), this );
290
+ quitAction = new QAction (tr (" E&xit" ), this );
291
291
quitAction->setStatusTip (tr (" Quit application" ));
292
292
quitAction->setShortcut (QKeySequence (Qt::CTRL + Qt::Key_Q));
293
293
quitAction->setMenuRole (QAction::QuitRole);
294
- aboutAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/about " ), tr (" &About %1" ).arg (PACKAGE_NAME), this );
294
+ aboutAction = new QAction (tr (" &About %1" ).arg (PACKAGE_NAME), this );
295
295
aboutAction->setStatusTip (tr (" Show information about %1" ).arg (PACKAGE_NAME));
296
296
aboutAction->setMenuRole (QAction::AboutRole);
297
297
aboutAction->setEnabled (false );
298
- aboutQtAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/about_qt " ), tr (" About &Qt" ), this );
298
+ aboutQtAction = new QAction (tr (" About &Qt" ), this );
299
299
aboutQtAction->setStatusTip (tr (" Show information about Qt" ));
300
300
aboutQtAction->setMenuRole (QAction::AboutQtRole);
301
- optionsAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/options " ), tr (" &Options..." ), this );
301
+ optionsAction = new QAction (tr (" &Options..." ), this );
302
302
optionsAction->setStatusTip (tr (" Modify configuration options for %1" ).arg (PACKAGE_NAME));
303
303
optionsAction->setMenuRole (QAction::PreferencesRole);
304
304
optionsAction->setEnabled (false );
305
- toggleHideAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/about " ), tr (" &Show / Hide" ), this );
305
+ toggleHideAction = new QAction (tr (" &Show / Hide" ), this );
306
306
toggleHideAction->setStatusTip (tr (" Show or hide the main Window" ));
307
307
308
- encryptWalletAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/lock_closed " ), tr (" &Encrypt Wallet..." ), this );
308
+ encryptWalletAction = new QAction (tr (" &Encrypt Wallet..." ), this );
309
309
encryptWalletAction->setStatusTip (tr (" Encrypt the private keys that belong to your wallet" ));
310
310
encryptWalletAction->setCheckable (true );
311
- backupWalletAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/filesave " ), tr (" &Backup Wallet..." ), this );
311
+ backupWalletAction = new QAction (tr (" &Backup Wallet..." ), this );
312
312
backupWalletAction->setStatusTip (tr (" Backup wallet to another location" ));
313
- changePassphraseAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/key " ), tr (" &Change Passphrase..." ), this );
313
+ changePassphraseAction = new QAction (tr (" &Change Passphrase..." ), this );
314
314
changePassphraseAction->setStatusTip (tr (" Change the passphrase used for wallet encryption" ));
315
- signMessageAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/edit " ), tr (" Sign &message..." ), this );
315
+ signMessageAction = new QAction (tr (" Sign &message..." ), this );
316
316
signMessageAction->setStatusTip (tr (" Sign messages with your Bitcoin addresses to prove you own them" ));
317
- verifyMessageAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/verify " ), tr (" &Verify message..." ), this );
317
+ verifyMessageAction = new QAction (tr (" &Verify message..." ), this );
318
318
verifyMessageAction->setStatusTip (tr (" Verify messages to ensure they were signed with specified Bitcoin addresses" ));
319
319
320
- openRPCConsoleAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/debugwindow " ), tr (" &Debug window" ), this );
320
+ openRPCConsoleAction = new QAction (tr (" &Debug window" ), this );
321
321
openRPCConsoleAction->setStatusTip (tr (" Open debugging and diagnostic console" ));
322
322
// initially disable the debug window menu item
323
323
openRPCConsoleAction->setEnabled (false );
324
324
openRPCConsoleAction->setObjectName (" openRPCConsoleAction" );
325
325
326
- usedSendingAddressesAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/address-book " ), tr (" &Sending addresses" ), this );
326
+ usedSendingAddressesAction = new QAction (tr (" &Sending addresses" ), this );
327
327
usedSendingAddressesAction->setStatusTip (tr (" Show the list of used sending addresses and labels" ));
328
- usedReceivingAddressesAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/address-book " ), tr (" &Receiving addresses" ), this );
328
+ usedReceivingAddressesAction = new QAction (tr (" &Receiving addresses" ), this );
329
329
usedReceivingAddressesAction->setStatusTip (tr (" Show the list of used receiving addresses and labels" ));
330
330
331
- openAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/open " ), tr (" Open &URI..." ), this );
331
+ openAction = new QAction (tr (" Open &URI..." ), this );
332
332
openAction->setStatusTip (tr (" Open a bitcoin: URI or payment request" ));
333
333
334
334
m_open_wallet_action = new QAction (tr (" Open Wallet" ), this );
@@ -339,7 +339,7 @@ void BitcoinGUI::createActions()
339
339
m_close_wallet_action = new QAction (tr (" Close Wallet..." ), this );
340
340
m_close_wallet_action->setStatusTip (tr (" Close wallet" ));
341
341
342
- showHelpMessageAction = new QAction (platformStyle-> TextColorIcon ( " :/icons/info " ), tr (" &Command-line options" ), this );
342
+ showHelpMessageAction = new QAction (tr (" &Command-line options" ), this );
343
343
showHelpMessageAction->setMenuRole (QAction::NoRole);
344
344
showHelpMessageAction->setStatusTip (tr (" Show the %1 help message to get a list with possible Bitcoin command-line options" ).arg (PACKAGE_NAME));
345
345
0 commit comments