Tidying
This commit is contained in:
@@ -404,7 +404,7 @@
|
|||||||
<bool>true</bool>
|
<bool>true</bool>
|
||||||
</property>
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Maximum width for integer data types: 64 bits</string>
|
<string>Maximum width for integer data types: 64 bits. Integer values for regions which exceed this width will be truncated.</string>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
|
|||||||
@@ -144,13 +144,13 @@ void TargetRegistersPaneWidget::filterRegisters(const QString& keyword) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void TargetRegistersPaneWidget::collapseAllRegisterGroups() {
|
void TargetRegistersPaneWidget::collapseAllRegisterGroups() {
|
||||||
for (auto& registerGroupWidget : this->registerGroupWidgets) {
|
for (const auto& registerGroupWidget : this->registerGroupWidgets) {
|
||||||
registerGroupWidget->collapse();
|
registerGroupWidget->collapse();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void TargetRegistersPaneWidget::expandAllRegisterGroups() {
|
void TargetRegistersPaneWidget::expandAllRegisterGroups() {
|
||||||
for (auto& registerGroupWidget : this->registerGroupWidgets) {
|
for (const auto& registerGroupWidget : this->registerGroupWidgets) {
|
||||||
registerGroupWidget->expand();
|
registerGroupWidget->expand();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user