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); }