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

r2599:d8e784e0dd82
r2713:f6fba9e059d7
Show More
boxplottester.pro
20 lines | 320 B | text/idl | PrologLexer
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 !include( ../tests.pri ) {
error( "Couldn't find the test.pri file!" )
}
TEMPLATE = app
Titta Heikkala
Fix boxplottertester...
r2599 QT += core gui
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548 contains(QT_MAJOR_VERSION, 5) {
QT += widgets
}
SOURCES += main.cpp \
mainwidget.cpp \
Mika Salmela
Added pentool to boxplot tester...
r2566 customtablemodel.cpp \
pentool.cpp
Mika Salmela
A new box-and-whiskers series type added to charts....
r2548
HEADERS += \
mainwidget.h \
Mika Salmela
Added pentool to boxplot tester...
r2566 customtablemodel.h \
pentool.h