2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-07 01:55:12 +00:00

Fix spaces on ends of lines

This commit is contained in:
Ilya Fedin
2021-03-04 19:29:01 +04:00
committed by John Preston
parent 23272430b4
commit 092b6e7c18
4 changed files with 11 additions and 11 deletions

View File

@@ -109,7 +109,7 @@ void GetServerInformation(
LOG(("Native Notification Error: %1").arg(
QString::fromStdString(e.what())));
}
crl::on_main([=] { callback({}); });
},
std::string(kService));
@@ -119,7 +119,7 @@ void GetServerInformation(
LOG(("Native Notification Error: %1").arg(
QString::fromStdString(e.what())));
}
crl::on_main([=] { callback(std::nullopt); });
}
@@ -156,7 +156,7 @@ void GetCapabilities(Fn<void(const QStringList &)> callback) {
LOG(("Native Notification Error: %1").arg(
QString::fromStdString(e.what())));
}
crl::on_main([=] { callback({}); });
},
std::string(kService));
@@ -166,7 +166,7 @@ void GetCapabilities(Fn<void(const QStringList &)> callback) {
LOG(("Native Notification Error: %1").arg(
QString::fromStdString(e.what())));
}
crl::on_main([=] { callback({}); });
}
@@ -204,7 +204,7 @@ void GetInhibitionSupported(Fn<void(bool)> callback) {
QString::fromStdString(e.what())));
}
}
crl::on_main([=] { callback(false); });
},
std::string(kService));
@@ -214,7 +214,7 @@ void GetInhibitionSupported(Fn<void(bool)> callback) {
LOG(("Native Notification Error: %1").arg(
QString::fromStdString(e.what())));
}
crl::on_main([=] { callback(false); });
}