Mywebwidget3/main.cpp
author Wesley Thierry <wesleyt@symbian.org>
Tue, 26 Oct 2010 09:48:36 -0700
changeset 6 4c7de3e5789a
parent 2 fa1a8300ce01
permissions -rw-r--r--
update the code to elimninate the jumping

/*
* Copyright (c) 2010 Symbian Foundation.
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the "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:
* Symbian Foundation - Initial contribution
*
* Description:
* Project main function.
*/

#include <QtGui/QApplication>
#include "mywebwidget.h"

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    MyWebWidget w;

#if defined(Q_WS_S60)
    w.showMaximized();
#else
    w.show();
#endif

    return a.exec();
}