SVN commit 886346 by weilbach: Minor polishing compile time warnings. M +2 -1 frame.cpp --- trunk/KDE/kdeplasma-addons/applets/frame/frame.cpp #886345:886346 @@ -72,6 +72,7 @@ void Frame::dataUpdated(const QString &name, const Plasma::DataEngine::Data &data) { + Q_UNUSED(name); QDate mCurrentDate = QDate::currentDate(); const QString identifier = m_potdProvider + ':' + mCurrentDate.toString(Qt::ISODate); @@ -164,7 +165,7 @@ } if (url.path() != "Default") { - KRun* startUrl = new KRun(url, 0); + new KRun(url, 0); } }