diff --git a/context/contextpage.h b/context/contextpage.h index 96c051efb..544bdb772 100644 --- a/context/contextpage.h +++ b/context/contextpage.h @@ -50,6 +50,7 @@ public: void update(const Song &s); void showEvent(QShowEvent *e); void paintEvent(QPaintEvent *e); + const QColor & normalLinkColor() const { return appLinkColor; } Q_SIGNALS: void findArtist(const QString &artist); diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index cd7b28ec6..71729b1cc 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -1451,10 +1451,12 @@ void MainWindow::changeConnection() void MainWindow::showAboutDialog() { QMessageBox::about(this, i18nc("Qt-only", "About Cantata"), + QLatin1String("")+ i18nc("Qt-only", "Cantata %1

MPD client.

(c) Craig Drummond 2011-2013.
Released under the GPLv3

" "Based upon QtMPC - (C) 2007-2010 The QtMPC Authors
" "Context view backdrops courtesy of Home Theater Backdrops
" - "Context view metadata courtesy of Wikipedia
").arg(PACKAGE_VERSION_STRING)); + "Context view metadata courtesy of Wikipedia").arg(PACKAGE_VERSION_STRING)+ + QLatin1String("")); } #endif