summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/kdatewidgettest.cpp
blob: 6e1c8d504fb90800d5941d1bcfcfa176c6660e98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "kdatewidget.h"
#include <tqlineedit.h>
#include <kapplication.h>
#include <klocale.h>

int main(int argc, char** argv)
{
  KLocale::setMainCatalogue("tdelibs");
  TDEApplication app(argc, argv, "KDateWidgettest");
  KDateWidget dateWidget;
  app.setMainWidget(&dateWidget);
  dateWidget.show();
  // dateWidget.setEnabled(false);
  return app.exec();
}