yacreader/common/yacreader_global.cpp
Luis Ángel San Martín b4ea359bed added: QsLog to YACReader
added: error log messages to client<->server local comunication
2014-03-23 10:31:32 +01:00

14 lines
304 B
C++

#include "yacreader_global.h"
using namespace YACReader;
QString YACReader::getSettingsPath()
{
#if QT_VERSION >= 0x050000
return QStandardPaths::writableLocation(QStandardPaths::DataLocation);
#else
return QDesktopServices::storageLocation(QDesktopServices::DataLocation);
#endif
}