mirror of
https://gitee.com/spark-store-project/spark-store
synced 2025-12-15 13:22:04 +08:00
13 lines
241 B
C++
13 lines
241 B
C++
#include "dbussparkstore.h"
|
|
#include <QDebug>
|
|
DBusSparkStoreService::DBusSparkStoreService(QObject *parent)
|
|
: QDBusAbstractAdaptor(parent)
|
|
{
|
|
|
|
}
|
|
|
|
void DBusSparkStoreService::activeWindow(const QString & arg)
|
|
{
|
|
emit sigOpenUrl(arg);
|
|
}
|