diff options
Diffstat (limited to 'kompare/komparepart/kompare_part.h')
-rw-r--r-- | kompare/komparepart/kompare_part.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kompare/komparepart/kompare_part.h b/kompare/komparepart/kompare_part.h index 0a9716c3..b7b05ce8 100644 --- a/kompare/komparepart/kompare_part.h +++ b/kompare/komparepart/kompare_part.h @@ -64,8 +64,8 @@ public: /** * Default constructor */ - KomparePart( QWidget *parentWidget, const char *widgetName, - QObject *parent, const char *name, const QStringList & /*args*/); + KomparePart( TQWidget *parentWidget, const char *widgetName, + TQObject *parent, const char *name, const TQStringList & /*args*/); /** * Destructor @@ -96,13 +96,13 @@ public: virtual bool openDiff( const KURL& diffUrl ); /** Added on request of Harald Fernengel */ - virtual bool openDiff( const QString& diffOutput ); + virtual bool openDiff( const TQString& diffOutput ); /** Open and parse the diff3 file at diff3Url */ virtual bool openDiff3( const KURL& diff3URL ); /** Open and parse the file diff3Output with the output of diff3 */ - virtual bool openDiff3( const QString& diff3Output ); + virtual bool openDiff3( const TQString& diff3Output ); /** Compare, with diff, source with destination */ virtual void compare( const KURL& sourceFile, const KURL& destinationFile ); @@ -123,7 +123,7 @@ public: virtual void openDirAndDiff ( const KURL& dir, const KURL& diffFile ); /** Reimplementing this because this one knows more about the real part then the interface */ - virtual void setEncoding( const QString& encoding ); + virtual void setEncoding( const TQString& encoding ); // This is the interpart interface, it is signal and slot based so no "real" interface here // All you have to do is connect the parts from your application. @@ -166,7 +166,7 @@ signals: void diffURLChanged(); void kompareInfo( Kompare::Info* info ); void setStatusBarModelInfo( int modelIndex, int differenceIndex, int modelCount, int differenceCount, int appliedCount ); -// void setStatusBarText( const QString& text ); +// void setStatusBarText( const TQString& text ); protected: /** @@ -183,7 +183,7 @@ protected: protected slots: void slotSetStatus( Kompare::Status status ); - void slotShowError( QString error ); + void slotShowError( TQString error ); void slotSwap(); void slotShowDiffstats(); @@ -195,9 +195,9 @@ protected slots: private: void cleanUpTemporaryFiles(); void setupActions(); - bool exists( const QString& url ); + bool exists( const TQString& url ); bool isDirectory( const KURL& url ); - const QString fetchURL( const KURL& url ); + const TQString fetchURL( const KURL& url ); private: // Uhm why were these static again ??? |