screencast: Switch to new outputScreencastRequested() signal

master
Vlad Zahorodnii 2020-09-02 17:38:56 +03:00
parent 790ddc0909
commit b3f3248543
2 changed files with 3 additions and 9 deletions

View File

@ -128,16 +128,10 @@ void ScreencastManager::streamWindow(KWaylandServer::ScreencastStreamInterface *
}
void ScreencastManager::streamOutput(KWaylandServer::ScreencastStreamInterface *waylandStream,
::wl_resource *outputResource,
KWaylandServer::OutputInterface *output,
KWaylandServer::ScreencastInterface::CursorMode mode)
{
auto outputIface = KWaylandServer::OutputInterface::get(outputResource);
if (!outputIface) {
waylandStream->sendFailed(i18n("Invalid output"));
return;
}
AbstractWaylandOutput *streamOutput = waylandServer()->findOutput(outputIface);
AbstractWaylandOutput *streamOutput = waylandServer()->findOutput(output);
if (!streamOutput) {
waylandStream->sendFailed(i18n("Could not find output"));

View File

@ -24,7 +24,7 @@ public:
void streamWindow(KWaylandServer::ScreencastStreamInterface *stream, const QString &winid);
void streamOutput(KWaylandServer::ScreencastStreamInterface *stream,
::wl_resource *outputResource,
KWaylandServer::OutputInterface *output,
KWaylandServer::ScreencastInterface::CursorMode mode);
private: