Fix build without krunner
This commit is contained in:
parent
cfcf2baae7
commit
0faf282694
1 changed files with 6 additions and 1 deletions
|
@ -59,7 +59,10 @@
|
||||||
#include <KStartupInfo>
|
#include <KStartupInfo>
|
||||||
// Qt
|
// Qt
|
||||||
#include <QtConcurrentRun>
|
#include <QtConcurrentRun>
|
||||||
|
|
||||||
|
#ifdef KF5Runner_FOUND
|
||||||
#include <runners/windowsrunnerinterface.h>
|
#include <runners/windowsrunnerinterface.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
namespace KWin
|
namespace KWin
|
||||||
{
|
{
|
||||||
|
@ -198,7 +201,9 @@ Workspace::Workspace()
|
||||||
});
|
});
|
||||||
|
|
||||||
new DBusInterface(this);
|
new DBusInterface(this);
|
||||||
|
#ifdef KF5Runner_FOUND
|
||||||
new WindowsRunner(this);
|
new WindowsRunner(this);
|
||||||
|
#endif
|
||||||
Outline::create(this);
|
Outline::create(this);
|
||||||
|
|
||||||
initShortcuts();
|
initShortcuts();
|
||||||
|
|
Loading…
Reference in a new issue