From kde-commits Wed Nov 19 01:27:00 2008 From: Christian Weilbach Date: Wed, 19 Nov 2008 01:27:00 +0000 To: kde-commits Subject: KDE/kdeplasma-addons/applets/frame Message-Id: <1227058020.422172.7229.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=122705803029980 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); } }