usbuis/usbuiqt/src/main.cpp
changeset 34 7858bc6ead78
parent 31 dfdd8240f7c8
child 35 9d8b04ca6939
--- a/usbuis/usbuiqt/src/main.cpp	Fri May 14 16:51:51 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,54 +0,0 @@
-/*
-* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
-* All rights reserved.
-* This component and the accompanying materials are made available
-* under the terms of "Eclipse Public License v1.0"
-* which accompanies this distribution, and is available
-* at the URL "http://www.eclipse.org/legal/epl-v10.html".
-*
-* Initial Contributors:
-* Nokia Corporation - initial contribution.
-*
-* Contributors:
-*
-* Description: 
-*
-*/
-
-
-#include <hbapplication.h>
-#include <hbmainwindow.h>
-#include <QTranslator>
-#include <eikenv.h>
-#include "usbviewmanager.h"
-
-int main(int argc, char *argv[])
-{
-    HbApplication app(argc, argv);
-
-    // add translator for application library
-    QString locale = QLocale::system().name();
-    QTranslator translator;
-    QString filename = QString("usbapplication_") + locale;
-#ifdef Q_OS_SYMBIAN    
-    // TRAP is must here, otherwise it crashes
-TRAP_IGNORE(
-    bool loaded(false);
-    loaded = translator.load( filename, QString("z:/resource/qt/translations") );
-    if (!loaded)
-        translator.load(filename, QString("c:/resource/qt/translations") );
-);
-#else
-    translator.load(filename, QString("resource") );
-#endif //Q_OS_SYMBIAN    
-    app.installTranslator(&translator);
-    
-    HbMainWindow mainWindow;
-
-    // create the view manager, which handles 3 HbViews and add into mainWindow.
-    UsbViewManager* mViewManager = new UsbViewManager( &mainWindow, &app );
-    mViewManager->addView();
-    
-    mainWindow.show();
-    return app.exec();
-}