mirror of
https://invent.kde.org/plasma/layer-shell-qt.git
synced 2025-06-04 01:28:35 -04:00
override + reorder some functions
This commit is contained in:
parent
7359923f4a
commit
64aa162224
@ -21,12 +21,15 @@ class QWaylandXdgActivationTokenV1
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
|
~QWaylandXdgActivationTokenV1() override {
|
||||||
|
destroy();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected:
|
||||||
void xdg_activation_token_v1_done(const QString &token) override {
|
void xdg_activation_token_v1_done(const QString &token) override {
|
||||||
Q_EMIT done(token);
|
Q_EMIT done(token);
|
||||||
}
|
}
|
||||||
~QWaylandXdgActivationTokenV1() {
|
|
||||||
destroy();
|
|
||||||
}
|
|
||||||
Q_SIGNALS:
|
Q_SIGNALS:
|
||||||
void done(const QString &token);
|
void done(const QString &token);
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user