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)
|
bool ClipboardPlugin::receivePackage(const NetworkPackage& np)
|
||||||
{
|
{
|
||||||
qDebug() << "AAAAAAAAAAAAAAAAAA";
|
|
||||||
if (np.type() == PACKAGE_TYPE_CLIPBOARD) {
|
if (np.type() == PACKAGE_TYPE_CLIPBOARD) {
|
||||||
ignore_next_clipboard_change = true;
|
ignore_next_clipboard_change = true;
|
||||||
clipboard->setText(np.get<QString>("content"));
|
clipboard->setText(np.get<QString>("content"));
|
||||||
|
|
|
@ -83,7 +83,8 @@ void MprisControlPlugin::addPlayer(const QString& service)
|
||||||
|
|
||||||
void MprisControlPlugin::propertiesChanged(const QString& propertyInterface, const QVariantMap& properties)
|
void MprisControlPlugin::propertiesChanged(const QString& propertyInterface, const QVariantMap& properties)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(propertyInterface);
|
||||||
|
|
||||||
NetworkPackage np(PACKAGE_TYPE_MPRIS);
|
NetworkPackage np(PACKAGE_TYPE_MPRIS);
|
||||||
bool somethingToSend = false;
|
bool somethingToSend = false;
|
||||||
if (properties.contains("Volume")) {
|
if (properties.contains("Volume")) {
|
||||||
|
|
Loading…
Reference in a new issue