mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Cleanup: replace QString("") by QString()
That should be more effective. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
37c159aae1
commit
d5953318ca
2 changed files with 3 additions and 3 deletions
|
|
@ -653,7 +653,7 @@ QString getSubsurfaceDataPath(QString folderToFind)
|
|||
folder = QDir(execdir.append("/../Resources/").append(folderToFind));
|
||||
if (folder.exists())
|
||||
return folder.absolutePath();
|
||||
return QString("");
|
||||
return QString();
|
||||
}
|
||||
|
||||
static const char *printing_templates = "printing_templates";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue