Rename Controller.connection to activeConnection

This commit is contained in:
Tobias Fella
2020-11-10 20:44:08 +01:00
parent 26b2071e11
commit 16c64ad67f
7 changed files with 22 additions and 22 deletions

View File

@@ -28,7 +28,7 @@ class Controller : public QObject
Q_OBJECT
Q_PROPERTY(int accountCount READ accountCount NOTIFY connectionAdded NOTIFY connectionDropped)
Q_PROPERTY(bool quitOnLastWindowClosed READ quitOnLastWindowClosed WRITE setQuitOnLastWindowClosed NOTIFY quitOnLastWindowClosedChanged)
Q_PROPERTY(Connection *connection READ connection WRITE setConnection NOTIFY connectionChanged)
Q_PROPERTY(Connection *activeConnection READ activeConnection WRITE setActiveConnection NOTIFY activeConnectionChanged)
Q_PROPERTY(bool isOnline READ isOnline NOTIFY isOnlineChanged)
Q_PROPERTY(bool busy READ busy WRITE setBusy NOTIFY busyChanged)
Q_PROPERTY(KAboutData aboutData READ aboutData WRITE setAboutData NOTIFY aboutDataChanged)
@@ -38,8 +38,8 @@ public:
QVector<Connection *> connections() const;
void setConnection(Connection *conn);
Connection *connection() const;
void setActiveConnection(Connection *connection);
Connection *activeConnection() const;
void addConnection(Connection *c);
void dropConnection(Connection *c);
@@ -101,7 +101,7 @@ Q_SIGNALS:
void notificationClicked(const QString roomId, const QString eventId);
void quitOnLastWindowClosedChanged();
void unreadCountChanged();
void connectionChanged();
void activeConnectionChanged();
void isOnlineChanged();
void aboutDataChanged();
void passwordStatus(Controller::PasswordStatus status);