diff libgui/src/external-editor-interface.cc @ 31647:431f80aba37a

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Tue, 06 Dec 2022 15:37:43 -0500
parents ca7d58406f82 c6d54dd31a7e
children deb553ac2c54
line wrap: on
line diff
--- a/libgui/src/external-editor-interface.cc	Tue Dec 06 15:17:16 2022 -0500
+++ b/libgui/src/external-editor-interface.cc	Tue Dec 06 15:37:43 2022 -0500
@@ -34,8 +34,8 @@
 #include "gui-settings.h"
 #include "gui-preferences-global.h"
 
-namespace octave
-{
+OCTAVE_BEGIN_NAMESPACE(octave)
+
   external_editor_interface::external_editor_interface (QWidget *p)
     : QWidget (p)
   { }
@@ -77,7 +77,6 @@
     return started_ok;
   }
 
-
   // Slots for the several signals for invoking the editor
 
   void external_editor_interface::request_new_file (const QString&)
@@ -126,4 +125,5 @@
 
     return editor;
   }
-}
+
+OCTAVE_END_NAMESPACE(octave)