summaryrefslogtreecommitdiffstats
path: root/kio/kfile/tests/knotifytest.cpp
blob: 0493b59b4ba3d05ee4464b3350b411367c82f798 (plain)
1
2
3
4
5
6
7
8
9
10
#include <kapplication.h>
#include <knotifydialog.h>

int main( int argc, char **argv )
{
    TDEApplication app( argc, argv, "knotifytest" );
    KNotifyDialog *dlg = new KNotifyDialog();
    dlg->addApplicationEvents( "twin" );
    return dlg->exec();
}