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

View File

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