summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/knuminputtest.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 15:56:40 -0600
commite16866e072f94410321d70daedbcb855ea878cac (patch)
treeee3f52eabde7da1a0e6ca845fb9c2813cf1558cf /tdeui/tests/knuminputtest.h
parenta58c20c1a7593631a1b50213c805507ebc16adaf (diff)
downloadtdelibs-e16866e072f94410321d70daedbcb855ea878cac.tar.gz
tdelibs-e16866e072f94410321d70daedbcb855ea878cac.zip
Actually move the kde files that were renamed in the last commit
Diffstat (limited to 'tdeui/tests/knuminputtest.h')
-rw-r--r--tdeui/tests/knuminputtest.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/tdeui/tests/knuminputtest.h b/tdeui/tests/knuminputtest.h
new file mode 100644
index 000000000..32a9e9098
--- /dev/null
+++ b/tdeui/tests/knuminputtest.h
@@ -0,0 +1,23 @@
+#ifndef _KNUMINPUTTEST_H
+#define _KNUMINPUTTEST_H
+
+#include <tqwidget.h>
+
+class KIntNumInput;
+class KDoubleNumInput;
+
+class TopLevel : public TQWidget
+{
+ Q_OBJECT
+public:
+
+ TopLevel( TQWidget *parent=0, const char *name=0 );
+protected:
+ KIntNumInput* i1, *i2, *i3, *i4, *i5, *i6, *i7;
+ KDoubleNumInput* d1, *d2, *d3, *d4, *d5, *d6, *d7;
+protected slots:
+ void slotPrint( int );
+ void slotPrint( double );
+};
+
+#endif