##// 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:

r2483:f494279b6366
r2603:1e4c29e111d4
Show More
domain.pri
28 lines | 790 B | text/plain | TextLexer
#Subdirectiores are defined here, because qt creator doesn't handle nested include(foo.pri) chains very well.
INCLUDEPATH += $$PWD
DEPENDPATH += $$PWD
SOURCES += \
$$PWD/abstractdomain.cpp \
$$PWD/polardomain.cpp \
$$PWD/xydomain.cpp \
$$PWD/xypolardomain.cpp \
$$PWD/xlogydomain.cpp \
$$PWD/xlogypolardomain.cpp \
$$PWD/logxydomain.cpp \
$$PWD/logxypolardomain.cpp \
$$PWD/logxlogydomain.cpp \
$$PWD/logxlogypolardomain.cpp
PRIVATE_HEADERS += \
$$PWD/abstractdomain_p.h \
$$PWD/polardomain_p.h \
$$PWD/xydomain_p.h \
$$PWD/xypolardomain_p.h \
$$PWD/xlogydomain_p.h \
$$PWD/xlogypolardomain_p.h \
$$PWD/logxydomain_p.h \
$$PWD/logxypolardomain_p.h \
$$PWD/logxlogydomain_p.h \
$$PWD/logxlogypolardomain_p.h