This commit is contained in:
Nav
2022-02-04 19:49:28 +00:00
parent 409205e9a5
commit b5fe7d6438
2 changed files with 3 additions and 3 deletions

View File

@@ -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>

View File

@@ -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();
}
}