diff options
Diffstat (limited to 'kompare/libdialogpages/filespage.h')
-rw-r--r-- | kompare/libdialogpages/filespage.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/kompare/libdialogpages/filespage.h b/kompare/libdialogpages/filespage.h index 145c4614..db4347b8 100644 --- a/kompare/libdialogpages/filespage.h +++ b/kompare/libdialogpages/filespage.h @@ -37,17 +37,17 @@ class FilesPage : PageBase { Q_OBJECT public: - FilesPage( QWidget* parent ); + FilesPage( TQWidget* parent ); virtual ~FilesPage(); public: KURLRequester* firstURLRequester() const; KURLRequester* secondURLRequester() const; - QString encoding() const; + TQString encoding() const; - void setFirstGroupBoxTitle ( const QString& title ); - void setSecondGroupBoxTitle( const QString& title ); + void setFirstGroupBoxTitle ( const TQString& title ); + void setSecondGroupBoxTitle( const TQString& title ); void setURLsInComboBoxes(); @@ -61,13 +61,13 @@ public: virtual void setDefaults(); protected slots: - void setFirstURL( const QString & ); - void setSecondURL( const QString & ); + void setFirstURL( const TQString & ); + void setSecondURL( const TQString & ); private: - QGroupBox* m_firstGB; - QGroupBox* m_secondGB; - QGroupBox* m_thirdGB; + TQGroupBox* m_firstGB; + TQGroupBox* m_secondGB; + TQGroupBox* m_thirdGB; KURLComboBox* m_firstURLComboBox; KURLComboBox* m_secondURLComboBox; KURLRequester* m_firstURLRequester; @@ -75,7 +75,7 @@ private: // Use this bool to lock the connection between both KURLRequesters. // This prevents annoying behaviour bool m_URLChanged; - QComboBox* m_encodingComboBox; + TQComboBox* m_encodingComboBox; FilesSettings* m_settings; }; |