Fix FileDialog namespace on Windows
This commit is contained in:
parent
7a67d7e1be
commit
58a43e284f
1 changed files with 13 additions and 9 deletions
|
|
@ -12,15 +12,6 @@ https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
||||||
namespace Platform {
|
namespace Platform {
|
||||||
namespace File {
|
namespace File {
|
||||||
|
|
||||||
enum class ImplementationType {
|
|
||||||
Default,
|
|
||||||
Count,
|
|
||||||
};
|
|
||||||
|
|
||||||
inline QString ImplementationTypeLabel(ImplementationType value) {
|
|
||||||
Unexpected("Value in Platform::FileDialog::TypeLabel.");
|
|
||||||
}
|
|
||||||
|
|
||||||
inline QString UrlToLocal(const QUrl &url) {
|
inline QString UrlToLocal(const QUrl &url) {
|
||||||
return ::File::internal::UrlToLocalDefault(url);
|
return ::File::internal::UrlToLocalDefault(url);
|
||||||
}
|
}
|
||||||
|
|
@ -30,4 +21,17 @@ inline void UnsafeOpenUrl(const QString &url) {
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace File
|
} // namespace File
|
||||||
|
|
||||||
|
namespace FileDialog {
|
||||||
|
|
||||||
|
enum class ImplementationType {
|
||||||
|
Default,
|
||||||
|
Count,
|
||||||
|
};
|
||||||
|
|
||||||
|
inline QString ImplementationTypeLabel(ImplementationType value) {
|
||||||
|
Unexpected("Value in Platform::FileDialog::TypeLabel.");
|
||||||
|
}
|
||||||
|
|
||||||
|
} // namespace FileDialog
|
||||||
} // namespace Platform
|
} // namespace Platform
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue