@@ -37,7 +37,7 @@ custom_ui::RecordingFileChooser::RecordingFileChooser(
3737
3838 if (result.has_value ()) {
3939 for (const auto & path : result.value ()) {
40- this ->currently_chosen_files .push_back (path);
40+ this ->m_currently_chosen_files .push_back (path);
4141 }
4242 } else {
4343 spdlog::warn (" error in dialog: {}" , result.error ());
@@ -66,7 +66,7 @@ custom_ui::RecordingFileChooser::RecordingFileChooser(
6666 for (const auto & file : std::filesystem::recursive_directory_iterator (result.value ())) {
6767 auto header_value = recorder::RecordingReader::is_header_valid (file.path ());
6868 if (header_value.has_value ()) {
69- this ->currently_chosen_files .push_back (file.path ());
69+ this ->m_currently_chosen_files .push_back (file.path ());
7070 }
7171 }
7272 }
@@ -116,14 +116,14 @@ helper::BoolWrapper<std::pair<ui::EventHandleType, ui::Widget*>> custom_ui::Reco
116116
117117[[nodiscard]] const std::vector<std::filesystem::path>& custom_ui::RecordingFileChooser::get_currently_chosen_files (
118118) const {
119- return currently_chosen_files ;
119+ return m_currently_chosen_files ;
120120}
121121
122122// TODO(Totto): solve in another way, that is better
123123void custom_ui::RecordingFileChooser::prepare_dialog (ServiceProvider* service_provider) {
124124
125125 // TODO(Totto): show scene on top, that hints of the dialog
126- this ->currently_chosen_files .clear ();
126+ this ->m_currently_chosen_files .clear ();
127127 service_provider->event_dispatcher ().disable ();
128128}
129129
0 commit comments