forked from qt-creator/qt-creator
16 lines
248 B
C++
16 lines
248 B
C++
#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();
|
|
}
|