mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-24 02:35:20 +00:00
Fixup c49cd699
: QString::toStdString is not always available
This method requires STL support in Qt. Fortunately, it is not needed here.
This commit is contained in:
parent
5de448e132
commit
5962cea9d2
@ -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.
|
||||
|
@ -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".
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user