2016-11-28 18:45:07 +03:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2018-01-03 13:23:14 +03:00
|
|
|
the official desktop application for the Telegram messaging service.
|
2016-11-28 18:45:07 +03:00
|
|
|
|
2018-01-03 13:23:14 +03:00
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
2016-11-28 18:45:07 +03:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2017-02-28 13:51:00 +03:00
|
|
|
#include "platform/platform_file_utilities.h"
|
2016-12-01 14:38:04 +03:00
|
|
|
|
2016-11-28 18:45:07 +03:00
|
|
|
namespace Platform {
|
2017-02-28 13:51:00 +03:00
|
|
|
namespace File {
|
|
|
|
|
|
|
|
inline QString UrlToLocal(const QUrl &url) {
|
2020-10-29 23:56:13 +04:00
|
|
|
return ::File::internal::UrlToLocalDefault(url);
|
2017-02-28 13:51:00 +03:00
|
|
|
}
|
|
|
|
|
2020-04-28 12:26:12 +04:00
|
|
|
inline void UnsafeOpenUrl(const QString &url) {
|
|
|
|
return ::File::internal::UnsafeOpenUrlDefault(url);
|
|
|
|
}
|
|
|
|
|
2017-02-28 13:51:00 +03:00
|
|
|
} // namespace File
|
2016-11-28 18:45:07 +03:00
|
|
|
} // namespace Platform
|