##// END OF EJS Templates
Fix zooming in crash...
Fix zooming in crash The bounding rect has to fit inside int limits when zooming in, meaning that the height and width both have to be within the int limits (INT_MAX). QWidget::update() uses a region (based on bounding rect) that has to be compatible with QRect. The geometry change is only done if the bounding rect fulfills this requirement. Task-number: QTRD-1907 Change-Id: I4e874de355390c5fc983ac1e0976bf0d21e2d10c Reviewed-by: Miikka Heikkinen <miikka.heikkinen@digia.com>

File last commit:

r2555:8f0e18a7e02c
r2603:1e4c29e111d4
Show More
animations.pri
26 lines | 705 B | text/plain | TextLexer
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
SOURCES += \
$$PWD/axisanimation.cpp \
$$PWD/xyanimation.cpp \
$$PWD/pieanimation.cpp \
$$PWD/piesliceanimation.cpp \
$$PWD/splineanimation.cpp \
$$PWD/baranimation.cpp \
$$PWD/scatteranimation.cpp \
$$PWD/boxplotanimation.cpp \
$$PWD/boxwhiskersanimation.cpp \
$$PWD/chartanimation.cpp
PRIVATE_HEADERS += \
$$PWD/axisanimation_p.h \
$$PWD/chartanimation_p.h \
$$PWD/xyanimation_p.h \
$$PWD/pieanimation_p.h \
$$PWD/piesliceanimation_p.h \
$$PWD/splineanimation_p.h \
$$PWD/baranimation_p.h \
$$PWD/scatteranimation_p.h \
$$PWD/boxplotanimation_p.h \
$$PWD/boxwhiskersanimation_p.h