summaryrefslogtreecommitdiffstats
path: root/vcs/clearcase/commentdlg.h
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/clearcase/commentdlg.h')
-rw-r--r--vcs/clearcase/commentdlg.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcs/clearcase/commentdlg.h b/vcs/clearcase/commentdlg.h
index 8ac50a38..953a9a4e 100644
--- a/vcs/clearcase/commentdlg.h
+++ b/vcs/clearcase/commentdlg.h
@@ -12,21 +12,21 @@
#ifndef _CLEARCASECOMMENTDLG_H_
#define _CLEARCASECOMMENTDLG_H_
-#include <qcheckbox.h>
-#include <qdialog.h>
-#include <qmultilineedit.h>
+#include <tqcheckbox.h>
+#include <tqdialog.h>
+#include <tqmultilineedit.h>
class CcaseCommentDlg : public QDialog
{
Q_OBJECT
public:
CcaseCommentDlg(bool = FALSE);
- QString logMessage() { return _edit->text(); };
+ TQString logMessage() { return _edit->text(); };
bool isReserved() { return (_check) ? _check->isChecked() : FALSE; };
private:
- QMultiLineEdit *_edit;
- QCheckBox* _check;
+ TQMultiLineEdit *_edit;
+ TQCheckBox* _check;
};
#endif