Chocobo1
2023-07-20 15:39:18 +08:00
parent f3f9cfe44e
commit b5fbfdf106
2 changed files with 2 additions and 2 deletions

View File

@@ -176,7 +176,7 @@ void PowerManagementInhibitor::onAsyncReply(QDBusPendingCallWatcher *call)
} }
else else
{ {
const QDBusPendingReply<quint32> reply = *call; const QDBusPendingReply<uint> reply = *call;
if (reply.isError()) if (reply.isError())
{ {

View File

@@ -71,6 +71,6 @@ private:
enum State m_state = Error; enum State m_state = Error;
enum State m_intendedState = Idle; enum State m_intendedState = Idle;
quint32 m_cookie = 0; uint m_cookie = 0;
QDBusUnixFileDescriptor m_fd; QDBusUnixFileDescriptor m_fd;
}; };