Fix change-of-sign warning found by ICC
qdbusintegrator_p.h(119): error #68: integer conversion resulted in a change of sign : QMetaCallEvent(0, -1, 0, sender, -1, 0, 0, 0, s), connection(c), node(n), ^ qpaintengineex_opengl2_p.h(193): error #68: integer conversion resulted in a change of sign void updateTextureFilter(GLenum target, GLenum wrapMode, bool smoothPixmapTransform, GLuint id = -1); ^ Change-Id: I7de381ea9ff348878ee99e5a18525352a779b31e Reviewed-by: Olivier Goffart <ogoffart@woboq.com>bb10
parent
4c5b503f33
commit
02c3e955e3
|
|
@ -116,7 +116,7 @@ public:
|
|||
QDBusActivateObjectEvent(const QDBusConnection &c, QObject *sender,
|
||||
const QDBusConnectionPrivate::ObjectTreeNode &n,
|
||||
int p, const QDBusMessage &m, QSemaphore *s = 0)
|
||||
: QMetaCallEvent(0, -1, 0, sender, -1, 0, 0, 0, s), connection(c), node(n),
|
||||
: QMetaCallEvent(0, ushort(-1), 0, sender, -1, 0, 0, 0, s), connection(c), node(n),
|
||||
pathStartPos(p), message(m), handled(false)
|
||||
{ }
|
||||
~QDBusActivateObjectEvent();
|
||||
|
|
|
|||
|
|
@ -191,7 +191,7 @@ public:
|
|||
void updateBrushUniforms();
|
||||
void updateMatrix();
|
||||
void updateCompositionMode();
|
||||
void updateTextureFilter(GLenum target, GLenum wrapMode, bool smoothPixmapTransform, GLuint id = -1);
|
||||
void updateTextureFilter(GLenum target, GLenum wrapMode, bool smoothPixmapTransform, GLuint id = GLuint(-1));
|
||||
|
||||
void resetGLState();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue