summaryrefslogtreecommitdiffstats
path: root/src/commentwidget.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/commentwidget.h')
-rw-r--r--src/commentwidget.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/commentwidget.h b/src/commentwidget.h
index 16ac051..8b9c0b9 100644
--- a/src/commentwidget.h
+++ b/src/commentwidget.h
@@ -20,29 +20,29 @@
#ifndef COMMENTWIDGET_H
#define COMMENTWIDGET_H
-#include <qwidget.h>
-#include <qdialog.h>
+#include <ntqwidget.h>
+#include <ntqdialog.h>
#include <comment.h>
-class QMultiLineEdit;
-class QCheckBox;
+class TQMultiLineEdit;
+class TQCheckBox;
namespace KBibTeX
{
- class CommentWidget : public QWidget
+ class CommentWidget : public TQWidget
{
Q_OBJECT
public:
- CommentWidget( BibTeX::Comment *comment, bool isReadOnly, QWidget *parent = 0, const char *name = 0 );
+ CommentWidget( BibTeX::Comment *comment, bool isReadOnly, TQWidget *parent = 0, const char *name = 0 );
~CommentWidget();
- static QDialog::DialogCode execute( BibTeX::Comment *comment, bool isReadOnly, QWidget *parent = 0, const char *name = 0 );
+ static TQDialog::DialogCode execute( BibTeX::Comment *comment, bool isReadOnly, TQWidget *parent = 0, const char *name = 0 );
private:
BibTeX::Comment* m_comment;
- QCheckBox *m_checkboxUseCommand;
- QMultiLineEdit *m_multiLineEdit;
+ TQCheckBox *m_checkboxUseCommand;
+ TQMultiLineEdit *m_multiLineEdit;
bool m_isReadOnly;
void setupGUI();