mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-09-09 02:46:34 +00:00
Add MTP::Sender to replace RPCSender some day.
Also use c++1z language standard in Xcode build. Also treat warnings as errors.
This commit is contained in:
@@ -62,7 +62,10 @@ QByteArray EscapeShell(const QByteArray &content) {
|
||||
|
||||
void UnsafeShowInFolder(const QString &filepath) {
|
||||
Ui::hideLayer(true);
|
||||
system(("xdg-open " + internal::EscapeShell(QFile::encodeName(QFileInfo(filepath).absoluteDir().absolutePath()))).constData());
|
||||
auto result = system(("xdg-open " + internal::EscapeShell(QFile::encodeName(QFileInfo(filepath).absoluteDir().absolutePath()))).constData());
|
||||
if (result) {
|
||||
LOG(("Failed to launch xdg-open"));
|
||||
}
|
||||
}
|
||||
|
||||
} // namespace File
|
||||
|
Reference in New Issue
Block a user