summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/kdatepicktest.cpp
blob: c982dbe9141cf649d619f0392a16765dec4ff028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "kdatepicker.h"
#include <tqlineedit.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();
}