From 4c0dae60b2fbc60996fc8f4bd29ee6219b869527 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Mon, 25 Sep 2023 12:03:00 +0900 Subject: Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version Signed-off-by: Michele Calgaro --- interfaces/tdeimproxy/TODO | 6 +++--- interfaces/tdescript/scriptloader.h | 2 +- interfaces/tdetexteditor/blockselectiondcopinterface.h | 2 +- interfaces/tdetexteditor/clipboarddcopinterface.h | 2 +- interfaces/tdetexteditor/documentdcopinfo.h | 2 +- interfaces/tdetexteditor/editdcopinterface.h | 4 ++-- interfaces/tdetexteditor/editinterface.h | 4 ++-- interfaces/tdetexteditor/encodingdcopinterface.h | 2 +- interfaces/tdetexteditor/printdcopinterface.h | 2 +- interfaces/tdetexteditor/searchdcopinterface.h | 2 +- interfaces/tdetexteditor/selectiondcopinterface.h | 2 +- interfaces/tdetexteditor/undodcopinterface.h | 2 +- interfaces/tdetexteditor/viewcursordcopinterface.h | 2 +- interfaces/tdetexteditor/viewstatusmsgdcopinterface.h | 2 +- 14 files changed, 18 insertions(+), 18 deletions(-) (limited to 'interfaces') diff --git a/interfaces/tdeimproxy/TODO b/interfaces/tdeimproxy/TODO index fc66130fe..6e215680a 100644 --- a/interfaces/tdeimproxy/TODO +++ b/interfaces/tdeimproxy/TODO @@ -1,10 +1,10 @@ For the future, the following modifications need to be done: Currently there is a function : - virtual QString presenceString( const QString & uid ) = 0; + virtual TQString presenceString( const TQString & uid ) = 0; This needs to be broken into: - virtual QString presenceString( const QString & uid ) = 0; - virtual QString presenceLongString( const QString & uid ) = 0; + virtual TQString presenceString( const TQString & uid ) = 0; + virtual TQString presenceLongString( const TQString & uid ) = 0; The former returning, say "Away", the latter returning the long away message. diff --git a/interfaces/tdescript/scriptloader.h b/interfaces/tdescript/scriptloader.h index e575fb5c7..ece776c6d 100644 --- a/interfaces/tdescript/scriptloader.h +++ b/interfaces/tdescript/scriptloader.h @@ -26,7 +26,7 @@ /** * Script loader */ -class ScriptLoader : virtual public QObject +class ScriptLoader : virtual public TQObject { TQ_OBJECT public: diff --git a/interfaces/tdetexteditor/blockselectiondcopinterface.h b/interfaces/tdetexteditor/blockselectiondcopinterface.h index 4b74fd2a0..66045239b 100644 --- a/interfaces/tdetexteditor/blockselectiondcopinterface.h +++ b/interfaces/tdetexteditor/blockselectiondcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent BlockSelectionInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ BlockSelectionDCOPInterface( BlockSelectionInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/clipboarddcopinterface.h b/interfaces/tdetexteditor/clipboarddcopinterface.h index 8104e9d4d..9a75f9b97 100644 --- a/interfaces/tdetexteditor/clipboarddcopinterface.h +++ b/interfaces/tdetexteditor/clipboarddcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent ClipboardInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ ClipboardDCOPInterface( ClipboardInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/documentdcopinfo.h b/interfaces/tdetexteditor/documentdcopinfo.h index ea25284fe..aedaee6a5 100644 --- a/interfaces/tdetexteditor/documentdcopinfo.h +++ b/interfaces/tdetexteditor/documentdcopinfo.h @@ -25,7 +25,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent DocumentInfoInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ DocumentInfoDCOPInterface( DocumentInfoInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/editdcopinterface.h b/interfaces/tdetexteditor/editdcopinterface.h index f169fb15b..c0a0f6cdf 100644 --- a/interfaces/tdetexteditor/editdcopinterface.h +++ b/interfaces/tdetexteditor/editdcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent EditInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ EditDCOPInterface( EditInterface *Parent, const char *name ); /** @@ -34,7 +34,7 @@ namespace KTextEditor virtual ~EditDCOPInterface(); k_dcop: /** - * @return the complete document as a single QString + * @return the complete document as a single TQString */ virtual TQString text (); diff --git a/interfaces/tdetexteditor/editinterface.h b/interfaces/tdetexteditor/editinterface.h index 05e4941f2..9da6a275d 100644 --- a/interfaces/tdetexteditor/editinterface.h +++ b/interfaces/tdetexteditor/editinterface.h @@ -48,12 +48,12 @@ class KTEXTEDITOR_EXPORT EditInterface * slots !!! */ /** - * @return the complete document as a single QString + * @return the complete document as a single TQString */ virtual TQString text () const = 0; /** - * @return a QString + * @return a TQString */ virtual TQString text ( uint startLine, uint startCol, uint endLine, uint endCol ) const = 0; diff --git a/interfaces/tdetexteditor/encodingdcopinterface.h b/interfaces/tdetexteditor/encodingdcopinterface.h index 38de4e0aa..e13a6dff4 100644 --- a/interfaces/tdetexteditor/encodingdcopinterface.h +++ b/interfaces/tdetexteditor/encodingdcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent EncodingInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ EncodingDCOPInterface( EncodingInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/printdcopinterface.h b/interfaces/tdetexteditor/printdcopinterface.h index e41e6da5d..f3d176fbd 100644 --- a/interfaces/tdetexteditor/printdcopinterface.h +++ b/interfaces/tdetexteditor/printdcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent PrintInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ PrintDCOPInterface( PrintInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/searchdcopinterface.h b/interfaces/tdetexteditor/searchdcopinterface.h index d4f558a26..e8a82a35b 100644 --- a/interfaces/tdetexteditor/searchdcopinterface.h +++ b/interfaces/tdetexteditor/searchdcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent SearchInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ SearchDCOPInterface( SearchInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/selectiondcopinterface.h b/interfaces/tdetexteditor/selectiondcopinterface.h index aa2973540..70e6e2f0b 100644 --- a/interfaces/tdetexteditor/selectiondcopinterface.h +++ b/interfaces/tdetexteditor/selectiondcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent SelectionInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ SelectionDCOPInterface( SelectionInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/undodcopinterface.h b/interfaces/tdetexteditor/undodcopinterface.h index b1a217036..5e324da03 100644 --- a/interfaces/tdetexteditor/undodcopinterface.h +++ b/interfaces/tdetexteditor/undodcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent UndoInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ UndoDCOPInterface( UndoInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/viewcursordcopinterface.h b/interfaces/tdetexteditor/viewcursordcopinterface.h index 4bae0b520..e0c956da0 100644 --- a/interfaces/tdetexteditor/viewcursordcopinterface.h +++ b/interfaces/tdetexteditor/viewcursordcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent ViewCursorInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ ViewCursorDCOPInterface( ViewCursorInterface *Parent, const char *name ); /** diff --git a/interfaces/tdetexteditor/viewstatusmsgdcopinterface.h b/interfaces/tdetexteditor/viewstatusmsgdcopinterface.h index b4c5cf72e..aba5b60b5 100644 --- a/interfaces/tdetexteditor/viewstatusmsgdcopinterface.h +++ b/interfaces/tdetexteditor/viewstatusmsgdcopinterface.h @@ -24,7 +24,7 @@ namespace KTextEditor Construct a new interface object for the text editor. @param Parent the parent ViewStatusMsgInterface object that will provide us with the functions for the interface. - @param name the QObject's name + @param name the TQObject's name */ ViewStatusMsgDCOPInterface( ViewStatusMsgInterface *Parent, const char *name ); /** -- cgit v1.2.3