tests/qtp/qtp_star/main.cpp
changeset 3 41300fa6a67c
parent 0 1918ee327afb
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
    38 ** $QT_END_LICENSE$
    38 ** $QT_END_LICENSE$
    39 **
    39 **
    40 ****************************************************************************/
    40 ****************************************************************************/
    41 
    41 
    42 #include <QApplication>
    42 #include <QApplication>
       
    43 
       
    44 #include <QtTest>
       
    45 #include "startest.h"
    43 #include "starwidget.h"
    46 #include "starwidget.h"
    44 
    47 
    45 int main(int argc, char *argv[])
    48 QTEST_MAIN(starTests)
    46 {
       
    47 #ifdef Q_OS_SYMBIAN
       
    48     QApplication::setGraphicsSystem("openvg");
       
    49 #endif
       
    50     QApplication app(argc, argv);
       
    51     StarWidget mw;
       
    52     mw.show();
       
    53     return app.exec();
       
    54 }