summaryrefslogtreecommitdiffstats
path: root/tdecore/tests/knotifytest.cpp
blob: 27076a1e8af3b3896cc2c1fb9fb6933a67f9ef54 (plain)
1
2
3
4
5
6
7
8
9
10
#include <knotifyclient.h>
#include <kapplication.h>

int main( int argc, char **argv )
{
	TDEApplication app( argc, argv, "knotifytest" );
    KNotifyClient::userEvent( "This is a notification to notify you :)", 
                              KNotifyClient::Messagebox,
                              KNotifyClient::Error );
}