mirror of
https://github.com/kotatogram/kotatogram-desktop
synced 2025-09-05 09:05:14 +00:00
Portal open with dialog works just fine and is a more universal solution... That allows to get rid of an additional process.
32 lines
651 B
C++
32 lines
651 B
C++
/*
|
|
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_gtk_integration.h"
|
|
|
|
namespace Platform {
|
|
namespace internal {
|
|
|
|
QString GtkIntegration::AllowedBackends() {
|
|
return {};
|
|
}
|
|
|
|
int GtkIntegration::Exec(
|
|
Type type,
|
|
const QString &parentDBusName,
|
|
const QString &serviceName) {
|
|
return 1;
|
|
}
|
|
|
|
void GtkIntegration::Start(Type type) {
|
|
}
|
|
|
|
void GtkIntegration::Autorestart(Type type) {
|
|
}
|
|
|
|
} // namespace internal
|
|
} // namespace Platform
|