summary refs log tree commit diff
path: root/third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.cpp
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2021-06-25 09:39:15 +0000
committerGitHub <noreply@github.com>2021-06-25 09:39:15 +0000
commit36f0e044398535143f24bbf2850df9e5b2947770 (patch)
treed8de79c75fb3033b4db2370745aefea7c0fe6616 /third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.cpp
parentMerge pull request #611 from balsoft/allow-edits-of-pending-messages (diff)
parentfix sort by unread not getting persisted (diff)
downloadnheko-36f0e044398535143f24bbf2850df9e5b2947770.tar.xz
Merge pull request #610 from Nheko-Reborn/spaces
Show some spaces in the community sidebar
Diffstat (limited to 'third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.cpp')
-rw-r--r--third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.cpp b/third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.cpp
new file mode 100644

index 00000000..0560b072 --- /dev/null +++ b/third_party/SingleApplication-3.3.0/examples/sending_arguments/messagereceiver.cpp
@@ -0,0 +1,12 @@ +#include <QDebug> +#include "messagereceiver.h" + +MessageReceiver::MessageReceiver(QObject *parent) : QObject(parent) +{ +} + +void MessageReceiver::receivedMessage(int instanceId, QByteArray message) +{ + qDebug() << "Received message from instance: " << instanceId; + qDebug() << "Message Text: " << message; +}