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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-08-18 22:46:30 +0300
committerKevin Ottens (Rebase PR Action) <er-vin@users.noreply.github.com>2020-09-01 09:37:03 +0300
commit80cc196f6fa9973b372164f0404463f10e498e07 (patch)
tree7acb071546dfd0385aba8f3f30ca018963918e3b /src/gui/creds
parent5cec1373ad6d28845a9588033171cd65dc29fc1e (diff)
Enable bugprone-narrowing-conversions clang-tidy check
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui/creds')
-rw-r--r--src/gui/creds/flow2auth.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/creds/flow2auth.h b/src/gui/creds/flow2auth.h
index e4deb203e..c90dac582 100644
--- a/src/gui/creds/flow2auth.h
+++ b/src/gui/creds/flow2auth.h
@@ -77,8 +77,8 @@ private:
QString _pollToken;
QString _pollEndpoint;
QTimer _pollTimer;
- int _secondsLeft;
- int _secondsInterval;
+ qint64 _secondsLeft;
+ qint64 _secondsInterval;
bool _isBusy;
bool _hasToken;
};