Tidying
This commit is contained in:
@@ -404,7 +404,7 @@
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
<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>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@@ -144,13 +144,13 @@ void TargetRegistersPaneWidget::filterRegisters(const QString& keyword) {
|
||||
}
|
||||
|
||||
void TargetRegistersPaneWidget::collapseAllRegisterGroups() {
|
||||
for (auto& registerGroupWidget : this->registerGroupWidgets) {
|
||||
for (const auto& registerGroupWidget : this->registerGroupWidgets) {
|
||||
registerGroupWidget->collapse();
|
||||
}
|
||||
}
|
||||
|
||||
void TargetRegistersPaneWidget::expandAllRegisterGroups() {
|
||||
for (auto& registerGroupWidget : this->registerGroupWidgets) {
|
||||
for (const auto& registerGroupWidget : this->registerGroupWidgets) {
|
||||
registerGroupWidget->expand();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user