diff --git a/widgets/meter.h b/widgets/meter.h index bdd4e321c..71e7d1c54 100644 --- a/widgets/meter.h +++ b/widgets/meter.h @@ -86,31 +86,16 @@ public: */ ~Meter(); - /** - * Set maximum value for the meter - */ - void setMaximum(int maximum); - /** * @return maximum value for the meter */ int maximum() const; - /** - * Set minimum value for the meter - */ - void setMinimum(int minimum); - /** * @return minimum value for the meter */ int minimum() const; - /** - * Set value for the meter - */ - void setValue(int value); - /** * @return value for the meter */ @@ -201,6 +186,21 @@ public Q_SLOTS: */ void dataUpdated(const QString &sourceName, const Plasma::DataEngine::Data &data); + /** + * Set maximum value for the meter + */ + void setMaximum(int maximum); + + /** + * Set minimum value for the meter + */ + void setMinimum(int minimum); + + /** + * Set value for the meter + */ + void setValue(int value); + protected: /** * Reimplemented from Plasma::Widget