summaryrefslogtreecommitdiffstats
path: root/kdeui/tests/kdatepicktest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kdeui/tests/kdatepicktest.cpp')
-rw-r--r--kdeui/tests/kdatepicktest.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/kdeui/tests/kdatepicktest.cpp b/kdeui/tests/kdatepicktest.cpp
new file mode 100644
index 000000000..eeef5945f
--- /dev/null
+++ b/kdeui/tests/kdatepicktest.cpp
@@ -0,0 +1,16 @@
+#include "kdatepicker.h"
+#include <qlineedit.h>
+#include <kapplication.h>
+#include <klocale.h>
+
+int main(int argc, char** argv)
+{
+ KLocale::setMainCatalogue("kdelibs");
+ KApplication app(argc, argv, "KDatePickertest");
+ KDatePicker picker;
+ app.setMainWidget(&picker);
+ picker.show();
+ // picker.setEnabled(false);
+ return app.exec();
+}
+