From kde-commits Fri Nov 26 19:46:00 2010 From: =?utf-8?q?Jonas=20Emanuel=20M=C3=BCller?= Date: Fri, 26 Nov 2010 19:46:00 +0000 To: kde-commits Subject: playground/network/videocatcher/src Message-Id: <20101126194600.E29A2AC8A2 () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=129080081416688 SVN commit 1201112 by jonasemuller: hopefully fixes build issues on opensuse 11.3 M +1 -1 mainwindowkde.cpp --- trunk/playground/network/videocatcher/src/mainwindowkde.cpp #1201111:1201112 @@ -1175,7 +1175,7 @@ QString command = videoPlaybackCommand + " " + KShell::quoteArg(d->m_episodeModel->videoPath(row)); KRun::runCommand(command, this); } else { - KRun::KRun *run = new KRun::KRun(d->m_episodeModel->videoPath(row), this); + KRun *run = new KRun(d->m_episodeModel->videoPath(row), this); if (preferredServiceName != "") { run->setPreferredService(preferredServiceName); }