Files
GoldenCheetah/qwt/examples/refreshtest/main.cpp
Mark Liversedge a399bea470 Revert "QT5 -- QWT 6.1 canvas fixup"
This reverts commit 54234ceca4.
2013-12-11 16:37:50 +00:00

31 lines
578 B
C++

#include "mainwindow.h"
#include <qapplication.h>
#ifndef QWT_NO_OPENGL
#if QT_VERSION >= 0x040600 && QT_VERSION < 0x050000
#define USE_OPENGL 1
#endif
#endif
#if USE_OPENGL
#include <qgl.h>
#endif
int main( int argc, char **argv )
{
#if USE_OPENGL
// on my box QPaintEngine::OpenGL2 has serious problems, f.e:
// the lines of a simple drawRect are wrong.
QGL::setPreferredPaintEngine( QPaintEngine::OpenGL );
#endif
QApplication a( argc, argv );
MainWindow mainWindow;
mainWindow.resize( 600, 400 );
mainWindow.show();
return a.exec();
}