예제 #1
0
파일: Fingerprint.cpp 프로젝트: 335/synergy
QString Fingerprint::directoryPath()
{
	CoreInterface coreInterface;
	QString profileDir = coreInterface.getProfileDir();

	return QString("%1/%2")
	  .arg(profileDir)
	  .arg(kDirName);
}
예제 #2
0
void SubscriptionManager::persistDirectory()
{
	CoreInterface coreInterface;
	QString profileDir = coreInterface.getProfileDir();

	QDir dir(profileDir);
	if (!dir.exists()) {
		dir.mkpath(".");
	}
}