diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 12:24:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-09-25 12:29:08 +0900 |
commit | 33ba77ee894fb6368e3804458ddd52ea1a1f0909 (patch) | |
tree | c2fa9505373e0a8b85c9c8b6764dc329e882168a /kmailcvt | |
parent | 929e1f08c9b4a2288ed122bbc54d8f25ace71375 (diff) | |
download | tdepim-33ba77ee894fb6368e3804458ddd52ea1a1f0909.tar.gz tdepim-33ba77ee894fb6368e3804458ddd52ea1a1f0909.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* version
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kmailcvt')
-rw-r--r-- | kmailcvt/README | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kmailcvt/README b/kmailcvt/README index d1105fe45..1f778afeb 100644 --- a/kmailcvt/README +++ b/kmailcvt/README @@ -16,14 +16,14 @@ your tdepim source directory. In the import method of your filter you are passed a FilterInfo object. This has the following methods that you may want to use: - void setFrom( const QString& from ); // Set to file importing from - void setTo( const QString& to ); // Set to folder importing into - void setCurrent( const QString& current ); // What we are doing + void setFrom( const TQString& from ); // Set to file importing from + void setTo( const TQString& to ); // Set to folder importing into + void setCurrent( const TQString& current ); // What we are doing void setCurrent( int percent = 0 ); // Set percentage of current file void setOverall( int percent = 0 ); // Set overall percentage - void addLog( const QString& log ); // Add a message for the user to see - void alert( const QString& message ); // Tell user something has gone wrong - QWidget *parent(); // The parent widget + void addLog( const TQString& log ); // Add a message for the user to see + void alert( const TQString& message ); // Tell user something has gone wrong + TQWidget *parent(); // The parent widget bool removeDupMsg; // true, if user selected 'remove duplicated messages' |