Doc - Add info about layouts to the example

Reviewed-by: Niels Weber
This commit is contained in:
Leena Miettinen
2010-07-07 10:34:06 +02:00
parent ce6460e229
commit 5d7f1bd0a5
2 changed files with 14 additions and 0 deletions
+3
View File
@@ -5,11 +5,14 @@ int main(int argc, char *argv[])
{
QApplication a(argc, argv);
BatteryIndicator w;
//! [0]
#if defined(Q_WS_S60)
w.showMaximized();
#else
w.show();
#endif
//! [0]
return a.exec();
}