From: Manuel Nickschas Date: Mon, 24 Mar 2014 20:43:45 +0000 (+0100) Subject: Change Q_WS_* to Q_OS_* X-Git-Tag: 0.11.0~78 X-Git-Url: https://git.quassel-irc.org/?a=commitdiff_plain;h=99678e189313b168c410fa15cd10cb673b73c8a2;hp=99678e189313b168c410fa15cd10cb673b73c8a2;p=quassel.git Change Q_WS_* to Q_OS_* The Q_WS_{WIN,MAC} macros have been deprecated since Qt 4.3 or so, and replaces by the corresponding Q_OS_* macros. Since Qt5 does not support them anymore at all, let's globally change those to the "new" version. Also change Q_OS_WIN32 to just Q_OS_WIN; while the former is supposed to be defined on all supported Windows platforms including Win64, it's still a bit confusing. ---