summaryrefslogtreecommitdiffstats
path: root/src/commentwidget.h
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2013-06-29 12:56:53 +0200
committerSlávek Banko <slavek.banko@axis.cz>2013-07-04 03:11:35 +0200
commit5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch)
treec8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/commentwidget.h
parent251c9a439759c830d34c70683d0fc9454d703010 (diff)
downloadkbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz
kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip
Initial TQt conversion
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();