mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-25 03:12:56 +00:00
QDBusConnectionManager mutex does not have to be mutable
Signed-off-by: Ivailo Monev <xakepa10@laimg.moc>
This commit is contained in:
parent
9786e420bd
commit
10fd63ca48
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ public:
|
||||||
QDBusConnectionPrivate *sender() const;
|
QDBusConnectionPrivate *sender() const;
|
||||||
void setSender(const QDBusConnectionPrivate *s);
|
void setSender(const QDBusConnectionPrivate *s);
|
||||||
|
|
||||||
mutable QMutex mutex;
|
QMutex mutex;
|
||||||
private:
|
private:
|
||||||
QHash<QString, QDBusConnectionPrivate *> connectionHash;
|
QHash<QString, QDBusConnectionPrivate *> connectionHash;
|
||||||
|
|
||||||
|
|
|
@ -77,7 +77,7 @@ public:
|
||||||
|
|
||||||
QMap<unsigned int, QNetworkConfigurationPrivatePointer> serviceNetworkMembers;
|
QMap<unsigned int, QNetworkConfigurationPrivatePointer> serviceNetworkMembers;
|
||||||
|
|
||||||
QMutex mutex;
|
mutable QMutex mutex;
|
||||||
|
|
||||||
QString name;
|
QString name;
|
||||||
QString id;
|
QString id;
|
||||||
|
|
Loading…
Add table
Reference in a new issue