@@ -285,20 +285,16 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle)
285285 quitAction->setStatusTip (tr (" Quit application" ));
286286 quitAction->setShortcut (QKeySequence (Qt::CTRL + Qt::Key_Q));
287287 quitAction->setMenuRole (QAction::QuitRole);
288- aboutAction = new QAction (networkStyle-> getAppIcon ( ), tr (" &About Bitcoin Core" ), this );
288+ aboutAction = new QAction (QIcon ( " :/icons/about " ), tr (" &About Bitcoin Core" ), this );
289289 aboutAction->setStatusTip (tr (" Show information about Bitcoin Core" ));
290290 aboutAction->setMenuRole (QAction::AboutRole);
291- #if QT_VERSION < 0x050000
292- aboutQtAction = new QAction (QIcon (" :/trolltech/qmessagebox/images/qtlogo-64.png" ), tr (" About &Qt" ), this );
293- #else
294- aboutQtAction = new QAction (QIcon (" :/qt-project.org/qmessagebox/images/qtlogo-64.png" ), tr (" About &Qt" ), this );
295- #endif
291+ aboutQtAction = new QAction (QIcon (" :/icons/about_qt" ), tr (" About &Qt" ), this );
296292 aboutQtAction->setStatusTip (tr (" Show information about Qt" ));
297293 aboutQtAction->setMenuRole (QAction::AboutQtRole);
298294 optionsAction = new QAction (QIcon (" :/icons/options" ), tr (" &Options..." ), this );
299295 optionsAction->setStatusTip (tr (" Modify configuration options for Bitcoin" ));
300296 optionsAction->setMenuRole (QAction::PreferencesRole);
301- toggleHideAction = new QAction (networkStyle-> getAppIcon ( ), tr (" &Show / Hide" ), this );
297+ toggleHideAction = new QAction (QIcon ( " :/icons/about " ), tr (" &Show / Hide" ), this );
302298 toggleHideAction->setStatusTip (tr (" Show or hide the main Window" ));
303299
304300 encryptWalletAction = new QAction (QIcon (" :/icons/lock_closed" ), tr (" &Encrypt Wallet..." ), this );
@@ -310,7 +306,7 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle)
310306 changePassphraseAction->setStatusTip (tr (" Change the passphrase used for wallet encryption" ));
311307 signMessageAction = new QAction (QIcon (" :/icons/edit" ), tr (" Sign &message..." ), this );
312308 signMessageAction->setStatusTip (tr (" Sign messages with your Bitcoin addresses to prove you own them" ));
313- verifyMessageAction = new QAction (QIcon (" :/icons/transaction_0 " ), tr (" &Verify message..." ), this );
309+ verifyMessageAction = new QAction (QIcon (" :/icons/verify " ), tr (" &Verify message..." ), this );
314310 verifyMessageAction->setStatusTip (tr (" Verify messages to ensure they were signed with specified Bitcoin addresses" ));
315311
316312 openRPCConsoleAction = new QAction (QIcon (" :/icons/debugwindow" ), tr (" &Debug window" ), this );
@@ -321,10 +317,10 @@ void BitcoinGUI::createActions(const NetworkStyle *networkStyle)
321317 usedReceivingAddressesAction = new QAction (QIcon (" :/icons/address-book" ), tr (" &Receiving addresses..." ), this );
322318 usedReceivingAddressesAction->setStatusTip (tr (" Show the list of used receiving addresses and labels" ));
323319
324- openAction = new QAction (QApplication::style ()-> standardIcon (QStyle::SP_FileIcon ), tr (" Open &URI..." ), this );
320+ openAction = new QAction (QIcon ( " :/icons/open " ), tr (" Open &URI..." ), this );
325321 openAction->setStatusTip (tr (" Open a bitcoin: URI or payment request" ));
326322
327- showHelpMessageAction = new QAction (QApplication::style ()-> standardIcon (QStyle::SP_MessageBoxInformation ), tr (" &Command-line options" ), this );
323+ showHelpMessageAction = new QAction (QIcon ( " :/icons/info " ), tr (" &Command-line options" ), this );
328324 showHelpMessageAction->setStatusTip (tr (" Show the Bitcoin Core help message to get a list with possible Bitcoin command-line options" ));
329325
330326 connect (quitAction, SIGNAL (triggered ()), qApp, SLOT (quit ()));
0 commit comments