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/macrowidget.h | |
parent | 251c9a439759c830d34c70683d0fc9454d703010 (diff) | |
download | kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.tar.gz kbibtex-5f5e7c5455d52826b0bd50f64fcffb7695ce970d.zip |
Initial TQt conversion
Diffstat (limited to 'src/macrowidget.h')
-rw-r--r-- | src/macrowidget.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/macrowidget.h b/src/macrowidget.h index 38d65ec..00fb9ff 100644 --- a/src/macrowidget.h +++ b/src/macrowidget.h @@ -20,7 +20,7 @@ #ifndef MACROWIDGET_H #define MACROWIDGET_H -#include <qwidget.h> +#include <ntqwidget.h> #include <macro.h> #include <fieldlineedit.h> @@ -29,11 +29,11 @@ class KLineEdit; namespace KBibTeX { - class MacroWidget : public QWidget + class MacroWidget : public TQWidget { Q_OBJECT public: - static QDialog::DialogCode execute( BibTeX::Macro *macro, bool isReadOnly, QWidget *parent = 0, const char *name = 0 ); + static TQDialog::DialogCode execute( BibTeX::Macro *macro, bool isReadOnly, TQWidget *parent = 0, const char *name = 0 ); private slots: void apply(); @@ -45,7 +45,7 @@ namespace KBibTeX KLineEdit *m_lineEditMacroId; KBibTeX::FieldLineEdit *m_fieldLineEditMacroValue; - MacroWidget( BibTeX::Macro *bibtexmacro, bool isReadOnly, QWidget *parent = 0, const char *name = 0 ); + MacroWidget( BibTeX::Macro *bibtexmacro, bool isReadOnly, TQWidget *parent = 0, const char *name = 0 ); ~MacroWidget(); void setupGUI(); |