From 5962cea9d25433ef6003cd33adf0845c23efeae3 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Wed, 28 Dec 2016 22:44:40 +0100 Subject: [PATCH] Fixup c49cd699: QString::toStdString is not always available This method requires STL support in Qt. Fortunately, it is not needed here. --- src/frontends/qt4/GuiDelimiter.cpp | 4 ++-- status.22x | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/frontends/qt4/GuiDelimiter.cpp b/src/frontends/qt4/GuiDelimiter.cpp index fb92871bf9..9cb4ae3bf2 100644 --- a/src/frontends/qt4/GuiDelimiter.cpp +++ b/src/frontends/qt4/GuiDelimiter.cpp @@ -412,9 +412,9 @@ void GuiDelimiter::on_swapPB_clicked() QChar(nrms.fontcode) : toqstr(docstring(1, nrms.unicode))); // Handle unencoded "symbol" of "(None)". - if (lqs.toStdString() == "?") + if (lqs == "?") lqs = qt_("(None)"); - if(rqs.toStdString() == "?") + if(rqs == "?") rqs = qt_("(None)"); // Locate matching QListWidgetItem. diff --git a/status.22x b/status.22x index d7cab35d4a..11c734a822 100644 --- a/status.22x +++ b/status.22x @@ -41,6 +41,8 @@ What's new - Implement wrap-around in change tracking's next-change function (bug 10388). +- The Math Delimiters dialog now has a "Swap & Reverse" button (bug 10457). + - Document Settings > "Output" has been renamed to "Formats" now that it also contains the option "Save transient properties". -- 2.39.5