changeset 33663:cc62e18e0519 bytecode-interpreter

maint: Merge default to bytecode-interpreter
author Arun Giridhar <arungiridhar@gmail.com>
date Fri, 14 Jun 2024 13:00:50 -0400
parents 6f2baadfdb3d (current diff) 4c378dd47cf2 (diff)
children 28493b96c69f
files etc/NEWS.9.md
diffstat 3 files changed, 12 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/etc/NEWS.9.md	Tue Jun 04 20:06:05 2024 -0400
+++ b/etc/NEWS.9.md	Fri Jun 14 13:00:50 2024 -0400
@@ -6,7 +6,7 @@
 ### Improvements and fixes
 
 - `jupyter-notebook`: Avoid error if evaluated code closes an existing figure
-  window.  Use unwind_protect block to ensure figure and tempfile cleanup
+  window.  Use `unwind_protect` block to ensure figure and tempfile cleanup
   actions occur (bug #65644).
 
 ### GUI
@@ -15,10 +15,11 @@
 
 - `jupyter-notebook` test no longer fails if a figure window is open
   (bug #65644).
-  
+
 ### Documentation
 
-- `load`: Correct documentaion of -v7.3 and -hdf5 options (bug #42530).
+- `load`: Correct documentation of `-v7.3` and `-hdf5` options (bug #42530).
+
 
 Summary of bugs fixed for version 9.2.0 (2024-06-01):
 -----------------------------------------------------
--- a/libgui/graphics/Table.cc	Tue Jun 04 20:06:05 2024 -0400
+++ b/libgui/graphics/Table.cc	Fri Jun 14 13:00:50 2024 -0400
@@ -1270,8 +1270,8 @@
 
       comboBox->installEventFilter (this);
       m_tableWidget->setCellWidget (row, col, comboBox);
-      connect (comboBox, SIGNAL(currentIndexChanged (const QString&)),
-               this, SLOT(comboBoxCurrentIndexChanged (const QString&)));
+      connect (comboBox, &QComboBox::currentTextChanged,
+               this, &Table::comboBoxCurrentIndexChanged);
     }
   else
     {
--- a/libgui/src/command-widget.cc	Tue Jun 04 20:06:05 2024 -0400
+++ b/libgui/src/command-widget.cc	Fri Jun 14 13:00:50 2024 -0400
@@ -355,14 +355,14 @@
   setMargins (0);
   setWrapMode (QsciScintilla::WrapWord);
 
-  connect (this, SIGNAL (cursorPositionChanged (int, int)),
-           this, SLOT (cursor_position_changed (int, int)));
+  connect (this, &QsciScintilla::cursorPositionChanged,
+           this, &console::cursor_position_changed);
 
-  connect (this, SIGNAL (textChanged ()),
-           this, SLOT (text_changed ()));
+  connect (this, &QsciScintilla::textChanged,
+           this, &console::text_changed);
 
-  connect (this, SIGNAL (modificationAttempted ()),
-           this, SLOT (move_cursor_to_end ()));
+  connect (this, &QsciScintilla::modificationAttempted,
+           this, &console::move_cursor_to_end);
 
   console_lexer *lexer = new console_lexer ();
   setLexer (lexer);