diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-07-31 19:51:49 +0000 |
commit | 4ae0c208b66e0f7954e194384464fe2d0a2c56dd (patch) | |
tree | b0a7cd1c184f0003c0292eb416ed27f674f9cc43 /kompare/komparepart/kompare_part.h | |
parent | 1964ea0fb4ab57493ca2ebb709c8d3b5395fd653 (diff) | |
download | tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.tar.gz tdesdk-4ae0c208b66e0f7954e194384464fe2d0a2c56dd.zip |
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdesdk@1157652 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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 ??? |