diff --git a/widgets/checkbox.cpp b/widgets/checkbox.cpp index 98553c8c4..775fd0752 100644 --- a/widgets/checkbox.cpp +++ b/widgets/checkbox.cpp @@ -127,12 +127,12 @@ QString CheckBox::image() const return d->imagePath; } -void CheckBox::setStylesheet(const QString &stylesheet) +void CheckBox::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString CheckBox::stylesheet() +QString CheckBox::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/checkbox.h b/widgets/checkbox.h index 16f827831..c63a1b561 100644 --- a/widgets/checkbox.h +++ b/widgets/checkbox.h @@ -39,7 +39,7 @@ class PLASMA_EXPORT CheckBox : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text WRITE setText) Q_PROPERTY(QString image READ image WRITE setImage) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(QCheckBox* nativeWidget READ nativeWidget) Q_PROPERTY(bool isChecked READ isChecked WRITE setChecked) @@ -72,16 +72,16 @@ public: QString image() const; /** - * Sets the style sheet used to control the visual display of this CheckBox + * Sets the stylesheet used to control the visual display of this CheckBox * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this CheckBox diff --git a/widgets/combobox.cpp b/widgets/combobox.cpp index c66ab9e56..84c39098a 100644 --- a/widgets/combobox.cpp +++ b/widgets/combobox.cpp @@ -62,12 +62,12 @@ QString ComboBox::text() const return static_cast(widget())->currentText(); } -void ComboBox::setStylesheet(const QString &stylesheet) +void ComboBox::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString ComboBox::stylesheet() +QString ComboBox::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/combobox.h b/widgets/combobox.h index e875312e8..bd292fd30 100644 --- a/widgets/combobox.h +++ b/widgets/combobox.h @@ -38,7 +38,7 @@ class PLASMA_EXPORT ComboBox : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(KComboBox* nativeWidget READ nativeWidget) public: @@ -51,16 +51,16 @@ public: QString text() const; /** - * Sets the style sheet used to control the visual display of this ComboBox + * Sets the stylesheet used to control the visual display of this ComboBox * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this ComboBox diff --git a/widgets/groupbox.cpp b/widgets/groupbox.cpp index 22f6ee31f..1e726cd89 100644 --- a/widgets/groupbox.cpp +++ b/widgets/groupbox.cpp @@ -66,12 +66,12 @@ QString GroupBox::text() const return static_cast(widget())->title(); } -void GroupBox::setStylesheet(const QString &stylesheet) +void GroupBox::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString GroupBox::stylesheet() +QString GroupBox::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/groupbox.h b/widgets/groupbox.h index 9b94d1da2..a5957587a 100644 --- a/widgets/groupbox.h +++ b/widgets/groupbox.h @@ -38,7 +38,7 @@ class PLASMA_EXPORT GroupBox : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text WRITE setText) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(QGroupBox* nativeWidget READ nativeWidget) public: @@ -58,16 +58,16 @@ public: QString text() const; /** - * Sets the style sheet used to control the visual display of this GroupBox + * Sets the stylesheet used to control the visual display of this GroupBox * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this GroupBox diff --git a/widgets/label.h b/widgets/label.h index 18aee7e08..e3267bcb6 100644 --- a/widgets/label.h +++ b/widgets/label.h @@ -72,7 +72,7 @@ public: QString image() const; /** - * Sets the style sheet used to control the visual display of this Label + * Sets the stylesheet used to control the visual display of this Label * * @arg stylesheet a CSS string */ diff --git a/widgets/lineedit.cpp b/widgets/lineedit.cpp index a2f8f50df..7001aaae8 100644 --- a/widgets/lineedit.cpp +++ b/widgets/lineedit.cpp @@ -69,12 +69,12 @@ QString LineEdit::text() const return static_cast(widget())->text(); } -void LineEdit::setStylesheet(const QString &stylesheet) +void LineEdit::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString LineEdit::stylesheet() +QString LineEdit::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/lineedit.h b/widgets/lineedit.h index d2658d245..11885e73d 100644 --- a/widgets/lineedit.h +++ b/widgets/lineedit.h @@ -38,7 +38,7 @@ class PLASMA_EXPORT LineEdit : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text WRITE setText) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(KLineEdit* nativeWidget READ nativeWidget) public: @@ -58,16 +58,16 @@ public: QString text() const; /** - * Sets the style sheet used to control the visual display of this LineEdit + * Sets the stylesheet used to control the visual display of this LineEdit * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this LineEdit diff --git a/widgets/pushbutton.cpp b/widgets/pushbutton.cpp index 5710f23b7..b57117199 100644 --- a/widgets/pushbutton.cpp +++ b/widgets/pushbutton.cpp @@ -127,12 +127,12 @@ QString PushButton::image() const return d->imagePath; } -void PushButton::setStylesheet(const QString &stylesheet) +void PushButton::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString PushButton::stylesheet() +QString PushButton::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/pushbutton.h b/widgets/pushbutton.h index 3eb6dd75f..82d32caa5 100644 --- a/widgets/pushbutton.h +++ b/widgets/pushbutton.h @@ -39,7 +39,7 @@ class PLASMA_EXPORT PushButton : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text WRITE setText) Q_PROPERTY(QString image READ image WRITE setImage) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(KPushButton* nativeWidget READ nativeWidget) public: @@ -71,16 +71,16 @@ public: QString image() const; /** - * Sets the style sheet used to control the visual display of this PushButton + * Sets the stylesheet used to control the visual display of this PushButton * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this PushButton diff --git a/widgets/radiobutton.cpp b/widgets/radiobutton.cpp index 44b470869..b466b58d7 100644 --- a/widgets/radiobutton.cpp +++ b/widgets/radiobutton.cpp @@ -127,12 +127,12 @@ QString RadioButton::image() const return d->imagePath; } -void RadioButton::setStylesheet(const QString &stylesheet) +void RadioButton::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString RadioButton::stylesheet() +QString RadioButton::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/radiobutton.h b/widgets/radiobutton.h index de607f56b..b5b5e9672 100644 --- a/widgets/radiobutton.h +++ b/widgets/radiobutton.h @@ -39,7 +39,7 @@ class PLASMA_EXPORT RadioButton : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text WRITE setText) Q_PROPERTY(QString image READ image WRITE setImage) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(QRadioButton* nativeWidget READ nativeWidget) Q_PROPERTY(bool isChecked READ isChecked WRITE setChecked) @@ -72,16 +72,16 @@ public: QString image() const; /** - * Sets the style sheet used to control the visual display of this RadioButton + * Sets the stylesheet used to control the visual display of this RadioButton * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this RadioButton diff --git a/widgets/template.cpp b/widgets/template.cpp index 92fe06b0f..cd99321e5 100644 --- a/widgets/template.cpp +++ b/widgets/template.cpp @@ -129,12 +129,12 @@ QString ::image() const return d->imagePath; } -void ::setStylesheet(const QString &stylesheet) +void ::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString ::stylesheet() +QString ::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/template.h b/widgets/template.h index f15dea146..f82d22b37 100644 --- a/widgets/template.h +++ b/widgets/template.h @@ -39,7 +39,7 @@ class PLASMA_EXPORT : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text WRITE setText) Q_PROPERTY(QString image READ image WRITE setImage) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(* nativeWidget READ nativeWidget) public: @@ -71,16 +71,16 @@ public: QString image() const; /** - * Sets the style sheet used to control the visual display of this + * Sets the stylesheet used to control the visual display of this * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this diff --git a/widgets/textedit.cpp b/widgets/textedit.cpp index d564d487a..45d17bd61 100644 --- a/widgets/textedit.cpp +++ b/widgets/textedit.cpp @@ -68,12 +68,12 @@ QString TextEdit::text() const return static_cast(widget())->toHtml(); } -void TextEdit::setStylesheet(const QString &stylesheet) +void TextEdit::setStyleSheet(const QString &stylesheet) { widget()->setStyleSheet(stylesheet); } -QString TextEdit::stylesheet() +QString TextEdit::styleSheet() { return widget()->styleSheet(); } diff --git a/widgets/textedit.h b/widgets/textedit.h index 69f1bd95e..b33698ecb 100644 --- a/widgets/textedit.h +++ b/widgets/textedit.h @@ -39,7 +39,7 @@ class PLASMA_EXPORT TextEdit : public QGraphicsProxyWidget Q_PROPERTY(QGraphicsWidget* parentWidget READ parentWidget) Q_PROPERTY(QString text READ text WRITE setText) - Q_PROPERTY(QString stylesheet READ stylesheet WRITE setStylesheet) + Q_PROPERTY(QString stylesheet READ styleSheet WRITE setStyleSheet) Q_PROPERTY(KTextEdit* nativeWidget READ nativeWidget) public: @@ -59,16 +59,16 @@ public: QString text() const; /** - * Sets the style sheet used to control the visual display of this TextEdit + * Sets the stylesheet used to control the visual display of this TextEdit * - * @arg stylehseet a CSS string + * @arg stylesheet a CSS string */ - void setStylesheet(const QString &stylesheet); + void setStyleSheet(const QString &stylesheet); /** * @return the stylesheet currently used with this widget */ - QString stylesheet(); + QString styleSheet(); /** * @return the native widget wrapped by this TextEdit