diff options
author | saturneric <[email protected]> | 2025-02-03 18:13:23 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-02-03 19:14:29 +0000 |
commit | 37d5b7e5546fde0433a2480eea5a2c3b222139ff (patch) | |
tree | 9c1f6f2d4b456dea2fb1af4aefcf4f1ac6ae97ee /src/ui/widgets/TextEdit.cpp | |
parent | fix: set pb range when size of operas > 1 (diff) | |
download | GpgFrontend-37d5b7e5546fde0433a2480eea5a2c3b222139ff.tar.gz GpgFrontend-37d5b7e5546fde0433a2480eea5a2c3b222139ff.zip |
fix: qt5 compile issues
Diffstat (limited to '')
-rw-r--r-- | src/ui/widgets/TextEdit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/widgets/TextEdit.cpp b/src/ui/widgets/TextEdit.cpp index 8b32983a..219f1447 100644 --- a/src/ui/widgets/TextEdit.cpp +++ b/src/ui/widgets/TextEdit.cpp @@ -370,7 +370,7 @@ auto TextEdit::MaybeSaveAnyTab() -> bool { } bool all_saved = true; - QList<int> const tab_ids_to_save = dialog->GetTabIdsToSave(); + QContainer<int> const tab_ids_to_save = dialog->GetTabIdsToSave(); for (const auto& tab_id : tab_ids_to_save) { tab_widget_->setCurrentIndex(tab_id); if (!maybe_save_current_tab(false)) { |