commit 5962cea9d25433ef6003cd33adf0845c23efeae3
Author: Jean-Marc Lasgouttes <[email protected]>
Date: Wed Dec 28 22:44:40 2016 +0100
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 fb92871..9cb4ae3 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 d7cab35..11c734a 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".