/
diev
/
stelegramdesktop-tdesktop
Обзор
Документация
Войти
/
diev
/
stelegramdesktop-tdesktop
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
dev
Telegram/SourceFiles/platform/linux/linux_wayland_integration_dummy.cpp
37 строк
859 B
Ilya Fedin
Move xdg-foreign support to lib_base
04 фев 2022, 16:31
04 фев 2022, 16:31
99e8d22
Код
Авторство
О чём код?
/* This file is part of Telegram Desktop, the official desktop application for the Telegram messaging service. For license and copyright information please follow this link: https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL */ #include "platform/linux/linux_wayland_integration.h" #include "base/platform/base_platform_info.h" namespace Platform { namespace internal { struct WaylandIntegration::Private { }; WaylandIntegration::WaylandIntegration() { } WaylandIntegration::~WaylandIntegration() = default; WaylandIntegration *WaylandIntegration::Instance() { if (!IsWayland()) return nullptr; static WaylandIntegration instance; return &instance; } bool WaylandIntegration::skipTaskbarSupported() { return false; } void WaylandIntegration::skipTaskbar(QWindow *window, bool skip) { } } // namespace internal } // namespace Platform