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 17:54:46 +0900 |
commit | 1a3e938ea6a568249910a55192b131fb182d60f1 (patch) | |
tree | b2636f350c19c46cb5bc19f30aa07c97a5ede679 /akregator | |
parent | eac8bbbdfd3f6ad6cbd8ec2a9e8870ea23e08c63 (diff) | |
download | tdepim-1a3e938ea6a568249910a55192b131fb182d60f1.tar.gz tdepim-1a3e938ea6a568249910a55192b131fb182d60f1.zip |
Replace QObject, QWidget, QImage, QPair, QRgb, QColor, QChar, QString, QIODevice with TQ* versionr14.1.1
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 33ba77ee894fb6368e3804458ddd52ea1a1f0909)
Diffstat (limited to 'akregator')
-rw-r--r-- | akregator/HACKING | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/akregator/HACKING b/akregator/HACKING index 996560bc1..cf8b640b0 100644 --- a/akregator/HACKING +++ b/akregator/HACKING @@ -145,7 +145,7 @@ class QSomething; namespace Akregator { -class Test : public QObject +class Test : public TQObject { TQ_OBJECT @@ -153,7 +153,7 @@ class Test : public QObject typedef QValueList<Test> list; Test(); - Test(QString someString); + Test(TQString someString); explicit Test(int i = 0); virtual ~Test(); @@ -212,7 +212,7 @@ test.cpp: namespace Akregator { Test::Test() - : QObject() + : TQObject() , m_protectedVar(0) , m_privateVar(0) , m_tastyThing(0) @@ -220,8 +220,8 @@ Test::Test() { } -Test::Test(QString someString) - : QObject() +Test::Test(TQString someString) + : TQObject() , m_protectedVar(0) , m_privateVar(0) , m_tastyThing(someString) @@ -230,7 +230,7 @@ Test::Test(QString someString) } Test::Test(int i); - : QObject() + : TQObject() , m_protectedVar(0) , m_privateVar(0) , m_tastyThing(i) |