mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00
fix timestamp format error
Change-Id: I813a9d2ad2714f5d2f5deacc74f051a3c60ecdcf
This commit is contained in:
parent
2fbb887ee0
commit
2fc9f8e4c5
@ -88,19 +88,19 @@ public Q_SLOTS: // METHODS
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
|
||||
argumentList << QVariant::fromValue(QX11Info::getTimestamp());
|
||||
argumentList << QVariant::fromValue(quint32(QX11Info::getTimestamp()));
|
||||
|
||||
return asyncCallWithArgumentList(QStringLiteral("Activate"), argumentList);
|
||||
}
|
||||
|
||||
inline QDBusPendingReply<> HandleMenuItem(const QString &item)
|
||||
{
|
||||
return asyncCall(QStringLiteral("HandleMenuItem"), QVariant::fromValue(QX11Info::getTimestamp()), item);
|
||||
return asyncCall(QStringLiteral("HandleMenuItem"), QVariant::fromValue(quint32(QX11Info::getTimestamp())), item);
|
||||
}
|
||||
|
||||
inline QDBusPendingReply<> HandleDragDrop(const QStringList &uriList)
|
||||
{
|
||||
return asyncCall(QStringLiteral("HandleDragDrop"), QVariant::fromValue(QX11Info::getTimestamp()), QVariant::fromValue(uriList));
|
||||
return asyncCall(QStringLiteral("HandleDragDrop"), QVariant::fromValue(quint32(QX11Info::getTimestamp())), QVariant::fromValue(uriList));
|
||||
}
|
||||
|
||||
inline QDBusPendingReply<> RequestDock()
|
||||
|
Loading…
x
Reference in New Issue
Block a user