From 8f7baf5f0c6f510d5105f0105fb9311c598f269b Mon Sep 17 00:00:00 2001 From: Alan Alpert Date: Tue, 17 Jan 2012 14:27:31 +1000 Subject: Match QRect change 3b973971fb1e483b9b3514358a415781c3c24ba8 changes the order of data members on mac, the struct we're using to fake QRect needs to match. Change-Id: Id2ecf1726e64514e12dd72980a0c0ad2b693c483 Reviewed-by: Michael Brasser --- src/declarative/qml/qdeclarativeinstruction_p.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/declarative/qml/qdeclarativeinstruction_p.h b/src/declarative/qml/qdeclarativeinstruction_p.h index 11f8029f94..29140d09d4 100644 --- a/src/declarative/qml/qdeclarativeinstruction_p.h +++ b/src/declarative/qml/qdeclarativeinstruction_p.h @@ -367,17 +367,10 @@ union QDeclarativeInstruction QML_INSTR_HEADER int propertyIndex; struct QRect { -#if defined(Q_OS_MAC) - int y1; - int x1; - int y2; - int x2; -#else int x1; int y1; int x2; int y2; -#endif } rect; }; struct instr_storeRectF { -- cgit v1.2.3