mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-23 05:25:26 +00:00
Add forgotten replacement
This commit is contained in:
parent
827615b82c
commit
55012674c8
@ -42,7 +42,8 @@ namespace {
|
|||||||
|
|
||||||
QString const guiString(QString in)
|
QString const guiString(QString in)
|
||||||
{
|
{
|
||||||
return in.replace("%26", "&").replace("%28", "(").replace("%29", ")");
|
// recode specially encoded chars in file names
|
||||||
|
return in.replace('_', ' ').replace("%26", "&").replace("%28", "(").replace("%29", ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace anon
|
} // namespace anon
|
||||||
|
Loading…
Reference in New Issue
Block a user