diff -r fd30d51f876b -r a949c2543c15 calendarui/application/src/main.cpp --- a/calendarui/application/src/main.cpp Mon May 03 12:30:32 2010 +0300 +++ b/calendarui/application/src/main.cpp Fri May 14 15:51:09 2010 +0300 @@ -31,16 +31,12 @@ // Main window for providing the scene context HbMainWindow window; - window.setRenderHints( - QPainter::Antialiasing | QPainter::SmoothPixmapTransform); - window.setViewportUpdateMode(QGraphicsView::MinimalViewportUpdate); //For translation, loading and installing translator QTranslator translator; QString lang = QLocale::system().name(); QString path = "Z:/resource/qt/translations/"; // TODO: Load the appropriate .qm file based on locale - //bool loaded = translator.load("calendar_" + lang, path); bool loaded = translator.load("calendar_en_GB",":/translations"); app.installTranslator(&translator); @@ -56,6 +52,7 @@ int retValue = app.exec(); // delete the controller + controller->ReleaseCustomisations(); controller->Release(); return retValue;