Drop qtBefore483() helper method

No longer needed with Qt 5.
This commit is contained in:
Martin Gräßlin 2013-07-22 16:19:38 +02:00
parent 4425fd3de9
commit 65321cf4e5

View file

@ -355,22 +355,8 @@ void Client::destroyClient()
deleteClient(this);
}
// DnD handling for input shaping is broken in the clients for all Qt versions before 4.8.3
// NOTICE do not query the Qt version macro, this is a runtime problem!
// TODO KDE5 remove this
static inline bool qtBefore483()
{
QStringList l = QString(qVersion()).split(".");
// "4.x.y"
return l.at(1).toUInt() < 5 && l.at(1).toUInt() < 9 && l.at(2).toUInt() < 3;
}
void Client::updateInputWindow()
{
static bool brokenQtInputHandling = qtBefore483();
if (brokenQtInputHandling)
return;
QRegion region;
if (!noBorder()) {