Fix some compiler errors

This commit is contained in:
Loren Burkholder 2023-07-22 15:22:04 -04:00
parent 41ff0096ff
commit 8a9e6ccf3e

View file

@ -420,8 +420,7 @@ ScreenCastPortal::start()
QDBusPendingCall pendingCall = QDBusConnection::sessionBus().asyncCall(msg); QDBusPendingCall pendingCall = QDBusConnection::sessionBus().asyncCall(msg);
QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(pendingCall, this); QDBusPendingCallWatcher *watcher = new QDBusPendingCallWatcher(pendingCall, this);
connect( connect(watcher, &QDBusPendingCallWatcher::finished, this, [](QDBusPendingCallWatcher *self) {
watcher, &QDBusPendingCallWatcher::finished, this, [this](QDBusPendingCallWatcher *self) {
self->deleteLater(); self->deleteLater();
QDBusPendingReply<QDBusObjectPath> reply = *self; QDBusPendingReply<QDBusObjectPath> reply = *self;
@ -502,7 +501,7 @@ ScreenCastPortal::openPipeWireRemote()
reply.error().message().toStdString()); reply.error().message().toStdString());
close(); close();
} else { } else {
stream.fd = std::move(reply.value()); stream.fd = reply.value();
nhlog::ui()->error("org.freedesktop.portal.ScreenCast: fd = {}", nhlog::ui()->error("org.freedesktop.portal.ScreenCast: fd = {}",
stream.fd.fileDescriptor()); stream.fd.fileDescriptor());
state = State::Started; state = State::Started;