mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-07-02 18:37:04 -04:00
Syntax fixes.
This commit is contained in:
parent
1e4587c7a3
commit
61dc295fa0
1 changed files with 2 additions and 4 deletions
|
@ -46,11 +46,11 @@ DataPath::DataPath()
|
|||
}
|
||||
#endif
|
||||
#ifdef Q_WS_MAC
|
||||
else if (testSetDir(QCoreApplication::applicationDirPath() + "/../Resources/keepassx") {
|
||||
else if (testSetDir(QCoreApplication::applicationDirPath() + "/../Resources/keepassx")) {
|
||||
}
|
||||
#endif
|
||||
#ifdef Q_WS_WIN
|
||||
else if (testSetDir(QCoreApplication::applicationDirPath() + "/share") {
|
||||
else if (testSetDir(QCoreApplication::applicationDirPath() + "/share")) {
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -60,8 +60,6 @@ DataPath::DataPath()
|
|||
else {
|
||||
m_basePath = QDir::cleanPath(m_basePath) + "/";
|
||||
}
|
||||
|
||||
qDebug("%s", m_basePath.toAscii().constData());
|
||||
}
|
||||
|
||||
bool DataPath::testSetDir(const QString& dir)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue