From 2a2ebe32b845ebddcca8d12500ba4aa445efa3bb Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Fri, 15 Nov 2019 09:48:05 +0200 Subject: [PATCH] Always use Q_OS_WIN macros. We don't have specific 32 bit implementations. --HG-- branch : develop --- src/app/valentina/mainwindowsnogui.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/valentina/mainwindowsnogui.h b/src/app/valentina/mainwindowsnogui.h index 094d82604..30e7a0479 100644 --- a/src/app/valentina/mainwindowsnogui.h +++ b/src/app/valentina/mainwindowsnogui.h @@ -45,7 +45,7 @@ struct PosterData; class QGraphicsRectItem; class VMeasurements; -#if defined(Q_OS_WIN32) && QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) +#if defined(Q_OS_WIN) && QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) class QWinTaskbarButton; class QWinTaskbarProgress; #endif @@ -124,7 +124,7 @@ protected: QPointer m_mouseCoordinate; QPointer m_unreadPatternMessage{}; -#if defined(Q_OS_WIN32) && QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) +#if defined(Q_OS_WIN) && QT_VERSION >= QT_VERSION_CHECK(5, 7, 0) QWinTaskbarButton *m_taskbarButton; QWinTaskbarProgress *m_taskbarProgress; #endif