summary refs log tree commit diff
path: root/include/ui/LoadingIndicator.h
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-10-23 00:19:35 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-10-23 00:19:35 +0300
commitc6e1068e0e1cb8ff5d5982ccd1683b1900dd7114 (patch)
treeb819b0664f4e95004237d00a4ea3a16e0a4677d6 /include/ui/LoadingIndicator.h
parentUse callbacks on MatrixClient (diff)
downloadnheko-c6e1068e0e1cb8ff5d5982ccd1683b1900dd7114.tar.xz
Lint
Diffstat (limited to 'include/ui/LoadingIndicator.h')
-rw-r--r--include/ui/LoadingIndicator.h20
1 files changed, 4 insertions, 16 deletions
diff --git a/include/ui/LoadingIndicator.h b/include/ui/LoadingIndicator.h

index 2641955a..75920dd8 100644 --- a/include/ui/LoadingIndicator.h +++ b/include/ui/LoadingIndicator.h
@@ -19,23 +19,11 @@ public: void start(); void stop(); - QColor color() - { - return color_; - } - void setColor(QColor color) - { - color_ = color; - } + QColor color() { return color_; } + void setColor(QColor color) { color_ = color; } - int interval() - { - return interval_; - } - void setInterval(int interval) - { - interval_ = interval; - } + int interval() { return interval_; } + void setInterval(int interval) { interval_ = interval; } private slots: void onTimeout();