Fixed warning and remove debug message
This commit is contained in:
parent
925e3abb3e
commit
16a18c3f30
2 changed files with 2 additions and 2 deletions
|
@ -51,7 +51,6 @@ void ClipboardPlugin::clipboardChanged(QClipboard::Mode mode)
|
|||
|
||||
bool ClipboardPlugin::receivePackage(const NetworkPackage& np)
|
||||
{
|
||||
qDebug() << "AAAAAAAAAAAAAAAAAA";
|
||||
if (np.type() == PACKAGE_TYPE_CLIPBOARD) {
|
||||
ignore_next_clipboard_change = true;
|
||||
clipboard->setText(np.get<QString>("content"));
|
||||
|
|
|
@ -83,6 +83,7 @@ void MprisControlPlugin::addPlayer(const QString& service)
|
|||
|
||||
void MprisControlPlugin::propertiesChanged(const QString& propertyInterface, const QVariantMap& properties)
|
||||
{
|
||||
Q_UNUSED(propertyInterface);
|
||||
|
||||
NetworkPackage np(PACKAGE_TYPE_MPRIS);
|
||||
bool somethingToSend = false;
|
||||
|
|
Loading…
Reference in a new issue