First stab at porting rbutil to Qt4. Currently only installing a current or archived...
[Rockbox.git] / rbutil / rbutilqt / main.cpp
blob8212d0476981deadd3054cc1c2309ec4256d00aa
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Riebeling
10 * $Id:$
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
21 #include <QtGui>
22 #include "rbutilqt.h"
25 int main( int argc, char ** argv ) {
26 QApplication app( argc, argv );
28 QTranslator translator;
29 // translator.load("rbutil_de.qm");
30 app.installTranslator(&translator);
32 RbUtilQt window(0);
33 window.show();
35 // app.connect( &app, SIGNAL(lastWindowClosed()), &app, SLOT(quit()) );
36 return app.exec();