summaryrefslogtreecommitdiffstats
path: root/kio/tests/kdirwatchtest.h
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2013-03-02 15:57:34 -0600
committerDarrell Anderson <humanreadable@yahoo.com>2013-03-02 15:57:34 -0600
commit7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f (patch)
treec76702a7f6310fbe9d437e347535422e836e94e9 /kio/tests/kdirwatchtest.h
parenta2a38be7600e2a2c2b49c66902d912ca036a2c0f (diff)
parent27bbee9a5f9dcda53d8eb23863ee670ad1360e41 (diff)
downloadtdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.tar.gz
tdelibs-7c0b0c9dc9fcbe9c198925bdc7ee18ac6be49f4f.zip
Merge branch 'master' of http://scm.trinitydesktop.org/scm/git/tdelibs
Diffstat (limited to 'kio/tests/kdirwatchtest.h')
-rw-r--r--kio/tests/kdirwatchtest.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/kio/tests/kdirwatchtest.h b/kio/tests/kdirwatchtest.h
deleted file mode 100644
index 24dc94a91..000000000
--- a/kio/tests/kdirwatchtest.h
+++ /dev/null
@@ -1,33 +0,0 @@
- /*
- This file is or will be part of KDE desktop environment
-
- Copyright 1998 Sven Radej <sven@lisa.exp.univie.ac.at>
-
- It is licensed under GPL version 2.
-
- If it is part of KDE libraries than this file is licensed under
- LGPL version 2.
- */
-
-#ifndef _KDIRWATCHTEST_H_
-#define _KDIRWATCHTEST_H_
-
-#include <stdlib.h>
-#include <stdio.h>
-#include <tqobject.h>
-
-#include "kdirwatch.h"
-#include "kapplication.h"
-
-class myTest : public TQObject
-{
- Q_OBJECT
-public:
- myTest() { };
-public slots:
- void dirty(const TQString &a) { printf("Dirty: %s\n", a.ascii()); };
- void created(const TQString& f) { printf("Created: %s\n", f.ascii()); }
- void deleted(const TQString& f) { printf("Deleted: %s\n", f.ascii()); }
-};
-
-#endif