summaryrefslogtreecommitdiffstats
path: root/tdeui/tests/klineeditdlgtest.cpp
blob: ecc6ac9849c7a9e11b14746d5f4d580ce48eb89f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <tdeapplication.h>
#include <klineeditdlg.h>

#include <tqstring.h>
#include <tqtextview.h>

int main(int argc, char** argv)
{
  TDEApplication app(argc, argv, "klineedittest");
  KLineEditDlg dialog( "_text", "_value", 0L );
  if(dialog.exec())
    {
      tqDebug("Accepted.");
    } else {
      tqDebug("Rejected.");
    }
  return 0;
}