1
mirror of https://github.com/qbittorrent/qBittorrent synced 2024-07-12 18:10:50 +02:00
Chocobo1 2023-07-20 15:39:18 +08:00
parent f3f9cfe44e
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
{
const QDBusPendingReply<quint32> reply = *call;
const QDBusPendingReply<uint> reply = *call;
if (reply.isError())
{

View File

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