From 41b48bd41c51983d6696a5b3e3330124e1e9dce6 Mon Sep 17 00:00:00 2001 From: Allen Winter Date: Sun, 19 Jul 2020 10:56:15 -0400 Subject: [PATCH] private/multisplitter/Item.cpp - minor comments readability --- src/private/multisplitter/Item.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/private/multisplitter/Item.cpp b/src/private/multisplitter/Item.cpp index 55d752a9..1ab3c2fb 100644 --- a/src/private/multisplitter/Item.cpp +++ b/src/private/multisplitter/Item.cpp @@ -623,7 +623,7 @@ void Item::setIsVisible(bool is) void Item::setGeometry_recursive(QRect rect) { - // Recursiveness doesn't apply for for non-container items + // Recursiveness doesn't apply for non-container items setGeometry(rect); } @@ -1879,7 +1879,7 @@ void ItemContainer::Private::resizeChildren(QSize oldSize, QSize newSize, Sizing { // This container is being resized to @p newSize, so we must resize our children too, based //on @p strategy. - // The new sizes are applied to @p childSizes, which will be applied to the widgets when when we're done + // The new sizes are applied to @p childSizes, which will be applied to the widgets when we're done const QVector childPercentages = this->childPercentages(); const int count = childSizes.count();