diff libgui/graphics/Table.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/graphics/Table.cc	Tue Dec 06 15:17:16 2022 -0500
+++ b/libgui/graphics/Table.cc	Tue Dec 06 15:37:43 2022 -0500
@@ -55,8 +55,7 @@
 #include "oct-string.h"
 #include "oct-strstrm.h"
 
-namespace octave
-{
+OCTAVE_BEGIN_NAMESPACE(octave)
 
   static const int AUTO_WIDTH = 75;
 
@@ -481,7 +480,6 @@
     updateExtent ();
     m_tableWidget->installEventFilter (this);
 
-
     connect (m_tableWidget, &QTableWidget::itemChanged,
              this, &Table::itemChanged);
     connect (m_tableWidget, &QTableWidget::cellClicked,
@@ -800,7 +798,6 @@
     m_blockUpdates = false;
   }
 
-
   void
   Table::itemChanged (QTableWidgetItem *item)
   {
@@ -1729,4 +1726,5 @@
   }
 
 #undef AUTO_HEIGHT
-}
+
+OCTAVE_END_NAMESPACE(octave)