Remove an unnecessary None definition

We should be able to just pass `0L` and avoid defining a None macro.

Pick-to: 6.5
Change-Id: I513d726120454523627a1e66515a5a533c0238b1
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
Amir Masoud Abdol 2023-04-24 15:12:46 +02:00
parent 07a736db6a
commit eec5a016d3

View File

@ -16,10 +16,6 @@
#include <X11/Xlib.h>
#undef register
#ifndef None
#define None 0L
#endif
QT_BEGIN_NAMESPACE
QXcbNativeBackingStore::QXcbNativeBackingStore(QWindow *window)
@ -78,11 +74,8 @@ void QXcbNativeBackingStore::flush(QWindow *window, const QRegion &region, const
XRenderSetPictureClipRectangles(display(), dstPic, 0, 0, clipRects.constData(), clipRects.size());
XRenderComposite(display(), PictOpSrc, srcPic, None, dstPic,
br.x() + offset.x(), br.y() + offset.y(),
0, 0,
br.x(), br.y(),
br.width(), br.height());
XRenderComposite(display(), PictOpSrc, srcPic, 0L /*None*/, dstPic, br.x() + offset.x(),
br.y() + offset.y(), 0, 0, br.x(), br.y(), br.width(), br.height());
XRenderFreePicture(display(), dstPic);
}