##// END OF EJS Templates
Suppress a warning in msvc 64bit builds...
Suppress a warning in msvc 64bit builds Using std:sort causes warning C4267 in 64bit msvc builds, because size_t and int are of different size. There should never be a case where list indexes grow so large that this causes problems, so just suppress the warning. Change-Id: I0e4904f88542178177afc51a82bbbd18b094eb32 Reviewed-by: Titta Heikkala <titta.heikkala@theqtcompany.com>

File last commit:

r2712:c544258484ff
r2713:f6fba9e059d7
Show More
xychart.pri
20 lines | 433 B | text/plain | TextLexer
#INCLUDEPATH += $$PWD
#DEPENDPATH += $$PWD
SOURCES += \
$$PWD/xychart.cpp \
$$PWD/qxyseries.cpp \
$$PWD/qxymodelmapper.cpp \
$$PWD/qvxymodelmapper.cpp \
$$PWD/qhxymodelmapper.cpp
PRIVATE_HEADERS += \
$$PWD/xychart_p.h \
$$PWD/qxyseries_p.h \
$$PWD/qxymodelmapper_p.h
PUBLIC_HEADERS += \
$$PWD/qxyseries.h \
$$PWD/qxymodelmapper.h \
$$PWD/qvxymodelmapper.h \
$$PWD/qhxymodelmapper.h