Chocobo1 2023-07-20 15:39:18 +08:00
commit b5fbfdf106
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
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;
}; };