fixed issue caused bay spaces in a app ID

This commit is contained in:
Patrick von Reth 2013-07-20 19:56:14 +02:00
parent da514e9a45
commit bb98537310
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ bool SnoreToast::init(SnoreCore *snore)
qDebug() << "SnoreToast does not work on windows" << QSysInfo::windowsVersion();
return false;
}
m_appID = QString("%1.%2.SnoreToast").arg(qApp->organizationName(), qApp->applicationName());
m_appID = QString("%1.%2.SnoreToast").arg(qApp->organizationName(), qApp->applicationName()).replace(" ","");
QProcess *p = new QProcess(this);
p->setReadChannelMode(QProcess::MergedChannels);