Skip to content

Commit

Permalink
requested changes
Browse files Browse the repository at this point in the history
Signed-off-by: greg <lahmatbiy@gmail.com>
  • Loading branch information
lahmatbiy committed Nov 10, 2017
1 parent 564e6a2 commit 7deb834
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions qrgui/editor/edgeElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ const qreal epsilon = 0.00000000001;

const int rightRotation = 1;// the difference between the elements of NodeSide
const int maxReductCoeff = 16;
const QPointF dummyStart = QPointF(0, 0);
const QPointF dummyEnd = QPointF(200, 60);
const QPointF dummyStart(0, 0);
const QPointF dummyEnd(200, 60);

/** @brief indicator of edges' movement */

Expand Down
2 changes: 1 addition & 1 deletion qrgui/editor/element.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ QString Element::logicalProperty(const QString &roleName) const
void Element::setLogicalProperty(const QString &roleName, const QString &oldValue
, const QString &newValue, bool withUndoRedo)
{
if ((oldValue == newValue) && withUndoRedo){
if ((oldValue == newValue) && withUndoRedo) {
return;
}

Expand Down

0 comments on commit 7deb834

Please sign in to comment.