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

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