summaryrefslogtreecommitdiff
path: root/src/libs/qmleditorwidgets
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@digia.com>2013-09-03 18:48:02 +0200
committerNikolai Kosjar <nikolai.kosjar@digia.com>2013-09-04 09:19:10 +0200
commit69fc3cf03f3395f0e7c6f60a5fda1a761e3a74d7 (patch)
tree5b54d383befaf8c83700eeffbb291e68b2f32eee /src/libs/qmleditorwidgets
parent435ec2ba5107764d075c328f76c69a9f94c4c240 (diff)
downloadqt-creator-69fc3cf03f3395f0e7c6f60a5fda1a761e3a74d7.tar.gz
Kill ";;" at end of statement
Change-Id: I177094f19978e07f85e42b34701d8f03cd26665e Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com>
Diffstat (limited to 'src/libs/qmleditorwidgets')
-rw-r--r--src/libs/qmleditorwidgets/contextpanetextwidget.cpp4
-rw-r--r--src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/qmleditorwidgets/contextpanetextwidget.cpp b/src/libs/qmleditorwidgets/contextpanetextwidget.cpp
index 5af62c4e39..153ad6095c 100644
--- a/src/libs/qmleditorwidgets/contextpanetextwidget.cpp
+++ b/src/libs/qmleditorwidgets/contextpanetextwidget.cpp
@@ -283,9 +283,9 @@ void ContextPaneTextWidget::onColorDialogApplied(const QColor &)
ContextPaneWidget *parentContextWidget = qobject_cast<ContextPaneWidget*>(parentWidget());
parentContextWidget->onShowColorDialog(false, QPoint());
if (ui->textColorButton->isChecked())
- emit propertyChanged(QLatin1String("styleColor"),parentContextWidget->colorDialog()->color());; //write back color
+ emit propertyChanged(QLatin1String("styleColor"),parentContextWidget->colorDialog()->color()); //write back color
if (ui->colorButton->isChecked())
- emit propertyChanged(QLatin1String("color"),parentContextWidget->colorDialog()->color());; //write back color
+ emit propertyChanged(QLatin1String("color"),parentContextWidget->colorDialog()->color()); //write back color
ui->textColorButton->setChecked(false);
ui->colorButton->setChecked(false);
}
diff --git a/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp b/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp
index 40a8a80d66..9fa4d2af1d 100644
--- a/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp
+++ b/src/libs/qmleditorwidgets/contextpanewidgetrectangle.cpp
@@ -168,9 +168,9 @@ void ContextPaneWidgetRectangle::onColorDialogApplied(const QColor &)
ContextPaneWidget *parentContextWidget = qobject_cast<ContextPaneWidget*>(parentWidget());
parentContextWidget->onShowColorDialog(false, QPoint());
if (ui->colorColorButton->isChecked())
- emit propertyChanged(QLatin1String("color"),parentContextWidget->colorDialog()->color());; //write back color
+ emit propertyChanged(QLatin1String("color"),parentContextWidget->colorDialog()->color()); //write back color
if (ui->borderColorButton->isChecked())
- emit propertyChanged(QLatin1String("border.color"),parentContextWidget->colorDialog()->color());; //write back color
+ emit propertyChanged(QLatin1String("border.color"),parentContextWidget->colorDialog()->color()); //write back color
if (m_gradientLineDoubleClicked)
ui->gradientLine->setActiveColor(parentContextWidget->colorDialog()->color());
ui->colorColorButton->setChecked(false);