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

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