diff options
Diffstat (limited to 'src/gui/symbolviewer.h')
-rw-r--r-- | src/gui/symbolviewer.h | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/src/gui/symbolviewer.h b/src/gui/symbolviewer.h index 9a09cb6..ed2fcee 100644 --- a/src/gui/symbolviewer.h +++ b/src/gui/symbolviewer.h @@ -15,7 +15,7 @@ #define SYMBOLVIEWER_H #include <klistview.h> -#include <qguardedptr.h> +#include <tqguardedptr.h> class KComboBox; class RegisterInfo; @@ -27,12 +27,13 @@ namespace KateMDI { class ToolView; } /** @author David Saxton */ -class SymbolViewer : public QWidget +class SymbolViewer : public TQWidget { Q_OBJECT + TQ_OBJECT public: - static SymbolViewer * self( KateMDI::ToolView * parent = 0l ); - static QString toolViewIdentifier() { return "SymbolViewer"; } + static SymbolViewer * self( KateMDI::ToolView * tqparent = 0l ); + static TQString toolViewIdentifier() { return "SymbolViewer"; } ~SymbolViewer(); enum Radix @@ -62,7 +63,7 @@ class SymbolViewer : public QWidget * Converts the value to a string for display according to the currently * selected radix. */ - QString toDisplayString( unsigned value ) const; + TQString toDisplayString( unsigned value ) const; signals: void valueRadixChanged( SymbolViewer::Radix newRadix ); @@ -71,21 +72,22 @@ class SymbolViewer : public QWidget void selectRadix( int selectIndex ); protected: - QGuardedPtr<GpsimProcessor> m_pGpsim; + TQGuardedPtr<GpsimProcessor> m_pGpsim; RegisterSet * m_pCurrentContext; KListView * m_pSymbolList; Radix m_valueRadix; private: - SymbolViewer( KateMDI::ToolView * parent ); + SymbolViewer( KateMDI::ToolView * tqparent ); static SymbolViewer * m_pSelf; KComboBox * m_pRadixCombo; }; -class SymbolViewerItem : public QObject, public KListViewItem +class SymbolViewerItem : public TQObject, public KListViewItem { Q_OBJECT + TQ_OBJECT public: SymbolViewerItem( SymbolViewer * symbolViewer, RegisterInfo * registerInfo ); |