diff options
Diffstat (limited to 'part/kxearchiveextssettings.h')
-rw-r--r-- | part/kxearchiveextssettings.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/part/kxearchiveextssettings.h b/part/kxearchiveextssettings.h index ad2f212..107fc77 100644 --- a/part/kxearchiveextssettings.h +++ b/part/kxearchiveextssettings.h @@ -20,7 +20,7 @@ #include "kxesettings.h" -#include <qstringlist.h> +#include <tqstringlist.h> class KXEArchiveExtsSettingsPage; @@ -36,27 +36,27 @@ class KXEArchiveExtsSettings : public KXESettings public: - KXEArchiveExtsSettings( QObject * pParent = 0, const char * pszName = 0 ); + KXEArchiveExtsSettings( TQObject * pParent = 0, const char * pszName = 0 ); // The following function(s) can be used to access this object's settings. - const QStringList & extensions() const { return m_lstExtensions; } + const TQStringList & extensions() const { return m_lstExtensions; } /** * Derived from @ref KXESettings */ - virtual QString dialogPageName() const; + virtual TQString dialogPageName() const; /** * Derived from @ref KXESettings */ - virtual QString dialogPageHeader() const; + virtual TQString dialogPageHeader() const; /** * Derived from @ref KXESettings */ - virtual QString dialogPageIcon() const; + virtual TQString dialogPageIcon() const; /** * Derived from @ref KXESettings */ - virtual QWidget * dialogPage( QFrame * pParent ); + virtual TQWidget * dialogPage( TQFrame * pParent ); protected: @@ -78,7 +78,7 @@ class KXEArchiveExtsSettings : public KXESettings virtual void updatePage() const; // the settings itself - QStringList m_lstExtensions; + TQStringList m_lstExtensions; /** * the corresponding configuration dialog page @@ -94,7 +94,7 @@ class KXEArchiveExtsSettings : public KXESettings /** * Copies the selected item's extension to the editline. */ - void slotPageEditExtension( const QString & ); + void slotPageEditExtension( const TQString & ); /** * Creates a new (empty) item/ extension in the listbox and selects it. */ @@ -106,7 +106,7 @@ class KXEArchiveExtsSettings : public KXESettings /** * Copies the lineedit's current text to the currently selected item. */ - void slotPageUpdateExtension( const QString & ); + void slotPageUpdateExtension( const TQString & ); }; |