summaryrefslogtreecommitdiffstats
path: root/quanta/parts/kafka/kafkacommon.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'quanta/parts/kafka/kafkacommon.cpp')
-rw-r--r--quanta/parts/kafka/kafkacommon.cpp15
1 files changed, 8 insertions, 7 deletions
diff --git a/quanta/parts/kafka/kafkacommon.cpp b/quanta/parts/kafka/kafkacommon.cpp
index 9d0c7cdf..94569fe2 100644
--- a/quanta/parts/kafka/kafkacommon.cpp
+++ b/quanta/parts/kafka/kafkacommon.cpp
@@ -740,17 +740,18 @@ void kafkaCommon::fitsNodesPosition(Node* startNode, int colMovement, int lineMo
beginCol, lastLine + lineMovement, lastCol);
for(j = 0; j < node->tag->attrCount(); ++j)
{
- if(node->tag->getAttribute(j).nameLine == SNbeginLine)
+ TagAttr* ta = node->tag->getAttribute_gcc46(j);
+ if(ta->nameLine == SNbeginLine)
{
- node->tag->getAttribute(j).nameLine += lineMovement;
- node->tag->getAttribute(j).nameCol += colMovement;
- node->tag->getAttribute(j).valueLine += lineMovement;
- node->tag->getAttribute(j).valueCol += colMovement;
+ ta->nameLine += lineMovement;
+ ta->nameCol += colMovement;
+ ta->valueLine += lineMovement;
+ ta->valueCol += colMovement;
}
else
{
- node->tag->getAttribute(j).nameLine += lineMovement;
- node->tag->getAttribute(j).valueLine += lineMovement;
+ ta->nameLine += lineMovement;
+ ta->valueLine += lineMovement;
}
}
node = getNextNode(node, b);