##// END OF EJS Templates
Changed include to small letter first becasue it didn't build on Linux
Changed include to small letter first becasue it didn't build on Linux

File last commit:

r255:ef94f64ce15a
r736:2fbb02cafb8b
Show More
main.cpp
15 lines | 484 B | text/x-c | CppLexer
Tero Ahola
Proof-of-concept for QML api...
r120 #include <QtGui/QApplication>
#include <QDeclarativeEngine>
#include "qmlapplicationviewer.h"
Q_DECL_EXPORT int main(int argc, char *argv[])
{
QScopedPointer<QApplication> app(createApplication(argc, argv));
QScopedPointer<QmlApplicationViewer> viewer(QmlApplicationViewer::create());
viewer->setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
Michal Klocek
Add qmlplugin support for integrated build
r255 viewer->setSource(QUrl("qrc:/qml/qmlchart/loader.qml"));
Tero Ahola
Proof-of-concept for QML api...
r120 viewer->showExpanded();
return app->exec();
}