Remove get()

This commit is contained in:
Jonas Kvinge 2021-08-25 02:58:20 +02:00
parent ed08818b6f
commit c1c34017e4
1 changed files with 1 additions and 1 deletions

View File

@ -181,7 +181,7 @@ void OSDDBus::CallFinished(QDBusPendingCallWatcher *watcher) {
std::unique_ptr<QDBusPendingCallWatcher> w(watcher);
QDBusPendingReply<uint> reply = *w.get();
QDBusPendingReply<uint> reply = *w;
if (reply.isError()) {
qLog(Warning) << "Error sending notification" << reply.error().name();
return;