aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/utils/proto_node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ui/qt/utils/proto_node.cpp')
-rw-r--r--ui/qt/utils/proto_node.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/ui/qt/utils/proto_node.cpp b/ui/qt/utils/proto_node.cpp
index 75316401d4..a09a6ae8e6 100644
--- a/ui/qt/utils/proto_node.cpp
+++ b/ui/qt/utils/proto_node.cpp
@@ -73,7 +73,7 @@ int ProtoNode::childrenCount() const
int row_count = 0;
ChildIterator kids = children();
- while ( kids.element().isValid() )
+ while (kids.element().isValid())
{
row_count++;
kids.next();
@@ -90,15 +90,15 @@ int ProtoNode::row()
int cur_row = 0;
ProtoNode::ChildIterator kids = parentNode().children();
- while ( kids.element().isValid() )
+ while (kids.element().isValid())
{
- if ( kids.element().protoNode() == node_ ) {
+ if (kids.element().protoNode() == node_) {
break;
}
cur_row++;
kids.next();
}
- if ( ! kids.element().isValid() ) {
+ if (! kids.element().isValid()) {
return -1;
}
return cur_row;
@@ -134,7 +134,7 @@ ProtoNode::ChildIterator::ChildIterator(ProtoNode::ChildIterator::NodePtr n)
bool ProtoNode::ChildIterator::hasNext()
{
- if ( ! node || node->next == Q_NULLPTR )
+ if (! node || node->next == Q_NULLPTR)
return false;
return true;
}