summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Studio/Palettes/TimelineGraphicsView/ui/RowTree.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Studio/Palettes/TimelineGraphicsView/ui/RowTree.cpp')
-rw-r--r--src/Authoring/Studio/Palettes/TimelineGraphicsView/ui/RowTree.cpp8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/Authoring/Studio/Palettes/TimelineGraphicsView/ui/RowTree.cpp b/src/Authoring/Studio/Palettes/TimelineGraphicsView/ui/RowTree.cpp
index d6af8295..73b92ec5 100644
--- a/src/Authoring/Studio/Palettes/TimelineGraphicsView/ui/RowTree.cpp
+++ b/src/Authoring/Studio/Palettes/TimelineGraphicsView/ui/RowTree.cpp
@@ -321,7 +321,7 @@ void RowTree::paint(QPainter *painter, const QStyleOptionGraphicsItem *option, Q
if (!isProperty()) {
// Don't access binding when we are in inconsistent state
- // TODO: Refactor so we don't need to access binding during paint
+ // TODO: Refactor so we don't need to access binding during paint (QT3DS-1850)
if (m_scene->widgetTimeline()->isFullReconstructPending())
return;
@@ -605,12 +605,6 @@ RowTree *RowTree::getChildAt(int index) const
return m_childRows.at(index);
}
-// TODO: so far not used, delete if end up not used
-void RowTree::moveChild(int from, int to)
-{
- m_childRows.move(from, to);
-}
-
// this does not destroy the row, just remove it from the layout and parenting hierarchy
void RowTree::removeChild(RowTree *child)
{