Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2020-11-30 14:17:47 +0300
committerHannah von Reth <hannah.vonreth@owncloud.com>2020-11-30 14:17:47 +0300
commitf074b30f5da8a94c9ea0b7b8d1c2a391336cf3b2 (patch)
tree2b37c86784c16e631f127d98ee40aaec7e423604
parent6ab1e5e0f6dfafe1816c014f8e26836dd7758444 (diff)
Use enum instead of int
-rw-r--r--src/gui/accountstate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/accountstate.h b/src/gui/accountstate.h
index ffb181e7b..453320a3c 100644
--- a/src/gui/accountstate.h
+++ b/src/gui/accountstate.h
@@ -141,7 +141,7 @@ private:
void setState(State state);
signals:
- void stateChanged(int state);
+ void stateChanged(State state);
void isConnectedChanged();
protected Q_SLOTS: