summaryrefslogtreecommitdiff
path: root/noncore/comm/mobilemsg/main.cpp
blob: f65d12ee1a9aafa7166f08c582dfd6d2eeb5250d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "mobilemsg.h"
#include <qpe/qpeapplication.h>

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

    MobileMsg mw;
    a.showMainWidget( &mw );

    return a.exec();
}