Fix narrowing conversions in osd dbus

This commit is contained in:
EmmanuelMess 2021-09-10 16:01:29 -03:00
parent 3ba793ed0c
commit 2d31134ee0
2 changed files with 2 additions and 2 deletions

View File

@ -164,7 +164,7 @@ void OSDDBus::ShowMessageNative(const QString &summary, const QString &message,
hints["transient"] = QVariant(true);
int id = 0;
quint64 id = 0;
if (last_notification_time_.secsTo(QDateTime::currentDateTime()) * 1000 < timeout_msec()) {
// Reuse the existing popup if it's still open. The reason we don't always
// reuse the popup is because the notification daemon on KDE4 won't re-show the bubble if it's already gone to the tray. See issue #118

View File

@ -145,7 +145,7 @@ class OSDPretty : public QWidget {
// Settings loaded from QSettings
QColor foreground_color_;
QColor background_color_;
float background_opacity_;
qreal background_opacity_;
QString popup_screen_name_;
QPoint popup_pos_;
QScreen *popup_screen_;