2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 06:35:14 +00:00

Fix whitespace and indentation errors.

See #6672, thanks Sea-n.
This commit is contained in:
John Preston
2020-01-02 14:25:52 +03:00
parent 74733275d8
commit 4eeac7dc18
25 changed files with 148 additions and 146 deletions

View File

@@ -33,13 +33,13 @@ inline void finish() {
inline QString psServerPrefix() {
#ifndef OS_MAC_STORE
return qsl("/tmp/");
return qsl("/tmp/");
#else // OS_MAC_STORE
return objc_documentsPath();
#endif // OS_MAC_STORE
}
inline void psCheckLocalSocket(const QString &serverName) {
QFile address(serverName);
QFile address(serverName);
if (address.exists()) {
address.remove();
}