We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d6247f commit 5955f7eCopy full SHA for 5955f7e
1 file changed
src/util.h
@@ -438,7 +438,7 @@ class CHelpMenu : public QMenu
438
public slots:
439
void OnHelpWhatsThis() { QWhatsThis::enterWhatsThisMode(); }
440
void OnHelpAbout() { AboutDlg.exec(); }
441
- void OnHelpAboutQt() { QMessageBox::aboutQt(this, QString("About Qt")); }
+ void OnHelpAboutQt() { QMessageBox::aboutQt ( nullptr, QString ( tr ( "About Qt" ) ) ); }
442
void OnHelpClientGetStarted() { QDesktopServices::openUrl ( QUrl ( CLIENT_GETTING_STARTED_URL ) ); }
443
void OnHelpServerGetStarted() { QDesktopServices::openUrl ( QUrl ( SERVER_GETTING_STARTED_URL ) ); }
444
void OnHelpSoftwareMan() { QDesktopServices::openUrl ( QUrl ( SOFTWARE_MANUAL_URL ) ); }
0 commit comments