SingleApplication: Remove semicolon
This commit is contained in:
parent
749bae1f16
commit
78f691d006
|
@ -161,7 +161,7 @@ void SingleApplicationPrivate::genBlockServerName() {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
appData.addData(appImagePath);
|
appData.addData(appImagePath);
|
||||||
};
|
}
|
||||||
#elif defined(Q_OS_WIN)
|
#elif defined(Q_OS_WIN)
|
||||||
appData.addData(SingleApplication::app_t::applicationFilePath().toLower().toUtf8());
|
appData.addData(SingleApplication::app_t::applicationFilePath().toLower().toUtf8());
|
||||||
#else
|
#else
|
||||||
|
@ -391,7 +391,7 @@ void SingleApplicationPrivate::slotConnectionEstablished() {
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -161,7 +161,7 @@ void SingleCoreApplicationPrivate::genBlockServerName() {
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
appData.addData(appImagePath);
|
appData.addData(appImagePath);
|
||||||
};
|
}
|
||||||
#elif defined(Q_OS_WIN)
|
#elif defined(Q_OS_WIN)
|
||||||
appData.addData(SingleCoreApplication::app_t::applicationFilePath().toLower().toUtf8());
|
appData.addData(SingleCoreApplication::app_t::applicationFilePath().toLower().toUtf8());
|
||||||
#else
|
#else
|
||||||
|
@ -391,7 +391,7 @@ void SingleCoreApplicationPrivate::slotConnectionEstablished() {
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
};
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue