Doc - Add tutorials on building and running example applications and creating mobile applications.

Reviewed-by: Christian Kamm
This commit is contained in:
Leena Miettinen
2010-05-28 17:10:03 +02:00
parent 85b165d1cf
commit ea54660fc0
19 changed files with 451 additions and 4 deletions

View File

@@ -0,0 +1,15 @@
#include <QtGui/QApplication>
#include "batteryindicator.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
BatteryIndicator w;
#if defined(Q_WS_S60)
w.showMaximized();
#else
w.show();
#endif
return a.exec();
}