comparison libgui/src/m-editor/file-editor.h @ 31647:431f80aba37a

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Dec 2022 15:37:43 -0500
parents ad014fc78bd6 c6d54dd31a7e
children deb553ac2c54
comparison
equal deleted inserted replaced
31645:bd9da634f00d 31647:431f80aba37a
42 #include "file-editor-interface.h" 42 #include "file-editor-interface.h"
43 #include "file-editor-tab.h" 43 #include "file-editor-tab.h"
44 #include "find-dialog.h" 44 #include "find-dialog.h"
45 #include "tab-bar.h" 45 #include "tab-bar.h"
46 46
47 namespace octave 47 OCTAVE_BEGIN_NAMESPACE(octave)
48 { 48
49 class base_qobject; 49 class base_qobject;
50 class file_editor; 50 class file_editor;
51 51
52 // subclassed QTabWidget for using custom tabbar 52 // subclassed QTabWidget for using custom tabbar
53 53
495 QPointer<find_dialog> m_find_dialog; 495 QPointer<find_dialog> m_find_dialog;
496 496
497 // List of data on temporarily closed files for later reloading. 497 // List of data on temporarily closed files for later reloading.
498 QList<removed_file_data> m_tmp_closed_files; 498 QList<removed_file_data> m_tmp_closed_files;
499 }; 499 };
500 } 500
501 OCTAVE_END_NAMESPACE(octave)
501 502
502 #endif 503 #endif