aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/General/notifier
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-06-12 18:59:56 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2018-06-12 18:59:56 +0000
commit69c45fb3cf722a6589efc99bf1fe2c151a3ea491 (patch)
tree05d335b9ec9e3cc4708c09e6ab98fd9f1176f192 /src/plugins/General/notifier
parent414c5245e4927ba40963e83d1a8ab09ecfe16502 (diff)
downloadqmmp-69c45fb3cf722a6589efc99bf1fe2c151a3ea491.tar.gz
qmmp-69c45fb3cf722a6589efc99bf1fe2c151a3ea491.tar.bz2
qmmp-69c45fb3cf722a6589efc99bf1fe2c151a3ea491.zip
replaced deprecated QDesktopWidget
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8034 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/General/notifier')
-rw-r--r--src/plugins/General/notifier/popupwidget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/General/notifier/popupwidget.cpp b/src/plugins/General/notifier/popupwidget.cpp
index 7837aff65..1cc01f8ae 100644
--- a/src/plugins/General/notifier/popupwidget.cpp
+++ b/src/plugins/General/notifier/popupwidget.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2008-2015 by Ilya Kotov *
+ * Copyright (C) 2008-2018 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -21,7 +21,7 @@
#include <QVBoxLayout>
#include <QLabel>
#include <QApplication>
-#include <QDesktopWidget>
+#include <QScreen>
#include <QTimer>
#include <QPalette>
#include <QSettings>
@@ -126,7 +126,7 @@ void PopupWidget::showVolume(int v)
void PopupWidget::updatePosition()
{
//calculate widget position
- QRect desktopRect = QApplication::desktop()->availableGeometry();
+ QRect desktopRect = QGuiApplication::primaryScreen()->availableGeometry();
int x = desktopRect.x() + 5, y = desktopRect.y() + 5;
if (m_pos == LEFT || m_pos == RIGHT || m_pos == CENTER)
y = desktopRect.y() + desktopRect.height()/2 - height()/2 + 5;