blob: 012a22b7f65a14a507a47182cac4ff0d69d133f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#include <kapplication.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;
}
|