windowsrunner: Make dummy implementation of Action method inline
This commit is contained in:
parent
624da13e21
commit
e3ab09dbd3
2 changed files with 4 additions and 9 deletions
|
@ -32,14 +32,6 @@ WindowsRunner::WindowsRunner()
|
|||
QDBusConnection::sessionBus().registerService(QStringLiteral("org.kde.KWin"));
|
||||
}
|
||||
|
||||
WindowsRunner::~WindowsRunner() = default;
|
||||
|
||||
RemoteActions WindowsRunner::Actions()
|
||||
{
|
||||
RemoteActions actions;
|
||||
return actions;
|
||||
}
|
||||
|
||||
RemoteMatches WindowsRunner::Match(const QString &searchTerm)
|
||||
{
|
||||
RemoteMatches matches;
|
||||
|
|
|
@ -34,7 +34,10 @@ public:
|
|||
explicit WindowsRunner();
|
||||
~WindowsRunner() override;
|
||||
|
||||
RemoteActions Actions();
|
||||
RemoteActions Actions()
|
||||
{
|
||||
return {};
|
||||
}
|
||||
RemoteMatches Match(const QString &searchTerm);
|
||||
void Run(const QString &id, const QString &actionId);
|
||||
|
||||
|
|
Loading…
Reference in a new issue