1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-09-02 18:33:16 +02:00

* Added version information to about-dialog.

This commit is contained in:
Christian Muehlhaeuser
2011-02-15 09:24:14 +01:00
parent 387bf27c98
commit 224d8efac6
2 changed files with 5 additions and 1 deletions

View File

@@ -495,6 +495,7 @@ TomahawkApp::activate()
#endif #endif
} }
bool bool
TomahawkApp::loadUrl( const QString& url ) TomahawkApp::loadUrl( const QString& url )
{ {
@@ -522,6 +523,7 @@ TomahawkApp::loadUrl( const QString& url )
return true; return true;
} }
void void
TomahawkApp::messageReceived( const QString& msg ) TomahawkApp::messageReceived( const QString& msg )
{ {

View File

@@ -424,5 +424,7 @@ TomahawkWindow::setWindowTitle( const QString& title )
void void
TomahawkWindow::showAboutTomahawk() TomahawkWindow::showAboutTomahawk()
{ {
QMessageBox::about( this, "About Tomahawk", "Copyright 2010, 2011 Christian Muehlhaeuser <muesli@gmail.com>\n\nThanks to: Leo Franchi, Jeff Mitchell, Dominik Schmidt, Alejandro Wainzinger and Steve Robertson" ); QMessageBox::about( this, "About Tomahawk",
tr( "<h2><b>Tomahawk %1</h2>Copyright 2010, 2011 Christian Muehlhaeuser <muesli@gmail.com><br/><br/>Thanks to: Leo Franchi, Jeff Mitchell, Dominik Schmidt, Alejandro Wainzinger and Steve Robertson" )
.arg( qApp->applicationVersion() ) );
} }