diff options
author | Slávek Banko <[email protected]> | 2013-06-29 12:56:53 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2013-07-04 03:11:35 +0200 |
commit | 5f5e7c5455d52826b0bd50f64fcffb7695ce970d (patch) | |
tree | c8ee8792d3fb139365abbf70c2255f1e69d2aa34 /src/preamblewidget.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/preamblewidget.h')
-rw-r--r-- | src/preamblewidget.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/preamblewidget.h b/src/preamblewidget.h index f08ba47..779f6b0 100644 --- a/src/preamblewidget.h +++ b/src/preamblewidget.h @@ -20,8 +20,8 @@ #ifndef KBIBTEXPREAMBLEWIDGET_H #define KBIBTEXPREAMBLEWIDGET_H -#include <qwidget.h> -#include <qdialog.h> +#include <ntqwidget.h> +#include <ntqdialog.h> #include <preamble.h> #include <fieldlineedit.h> @@ -32,11 +32,11 @@ namespace KBibTeX /** @author Thomas Fischer <[email protected]> */ - class PreambleWidget : public QWidget + class PreambleWidget : public TQWidget { Q_OBJECT public: - static QDialog::DialogCode execute( BibTeX::Preamble *preamble, bool isReadOnly, QWidget *parent = 0, const char *name = 0 ); + static TQDialog::DialogCode execute( BibTeX::Preamble *preamble, bool isReadOnly, TQWidget *parent = 0, const char *name = 0 ); private slots: void apply(); @@ -47,7 +47,7 @@ namespace KBibTeX BibTeX::Preamble* m_bibtexpreamble; KBibTeX::FieldLineEdit *m_fieldLineEditPreambleValue; - PreambleWidget( BibTeX::Preamble *bibtexpreamble, bool isReadOnly, QWidget *parent = 0, const char *name = 0 ); + PreambleWidget( BibTeX::Preamble *bibtexpreamble, bool isReadOnly, TQWidget *parent = 0, const char *name = 0 ); ~PreambleWidget(); void setupGUI(); |