summaryrefslogtreecommitdiff
path: root/noncore/apps/tinykate/main.cpp
blob: e06668af5fb9dcb3470523b4fe6b4f9cd054d102 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/***************************************************************************
                             main.cpp
                             -------------------
    begin                : November 2002
    copyright            : (C) 2002 by Joseph Wenninger <jowenn@kde.org>
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation.                                         *
 *   ONLY VERSION 2 OF THE LICENSE IS APPLICABLE                           *
 *                                                                         *
 ***************************************************************************/
#include <qpe/qpeapplication.h>
#include <qmainwindow.h>
#include "tinykate.h"


int main( int argc, char ** argv )
{
    QPEApplication a( argc, argv );

    TinyKate m;
    a.showMainWidget(&m );
    return a.exec();
}