summaryrefslogtreecommitdiffstats
path: root/kontact
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 12:24:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-09-25 17:54:46 +0900
commit1a3e938ea6a568249910a55192b131fb182d60f1 (patch)
treeb2636f350c19c46cb5bc19f30aa07c97a5ede679 /kontact
parenteac8bbbdfd3f6ad6cbd8ec2a9e8870ea23e08c63 (diff)
downloadtdepim-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 'kontact')
-rw-r--r--kontact/DESIGN.dcopinteraction2
-rw-r--r--kontact/Thoughts2
-rw-r--r--kontact/interfaces/core.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/kontact/DESIGN.dcopinteraction b/kontact/DESIGN.dcopinteraction
index 950b9eea..d51fd886 100644
--- a/kontact/DESIGN.dcopinteraction
+++ b/kontact/DESIGN.dcopinteraction
@@ -57,7 +57,7 @@ In the kontact plugin
* Don't use dcopClient() until the part is loaded
* After loading the part, you might want to create a DCOP stub to use some
of its methods (do both in a loadPart() method, e.g.).
-* Implement createDCOPInterface( const QString& serviceType ), to
+* Implement createDCOPInterface( const TQString& serviceType ), to
load the part if the serviceType is one provided by it.
See KAddressbookPlugin (plugins/kaddressbook/*) for a working example.
diff --git a/kontact/Thoughts b/kontact/Thoughts
index c4332425..a7601453 100644
--- a/kontact/Thoughts
+++ b/kontact/Thoughts
@@ -367,7 +367,7 @@ h: there is something else broken IMHO
Summary View
------------
h: How would one best integrate a summary view into kontact?
-h: a) add a virtual QWidget *summary(const QDateTime&, QWidget* parent );
+h: a) add a virtual TQWidget *summary(const QDateTime&, TQWidget* parent );
h: to get a summary widget for a day?
h: b) use some sort of XML to UI to represent the summary informations
h: c) have a stand a lone part which opens the PIM data seperately? ( How
diff --git a/kontact/interfaces/core.cpp b/kontact/interfaces/core.cpp
index 3c270aa8..5cc30c2c 100644
--- a/kontact/interfaces/core.cpp
+++ b/kontact/interfaces/core.cpp
@@ -71,7 +71,7 @@ KParts::ReadOnlyPart *Core::createPart( const char *libname )
KParts::ReadOnlyPart *pimPart = dynamic_cast<KParts::ReadOnlyPart*>( part );
if ( pimPart ) {
mParts.insert( libname, pimPart );
- QObject::connect( pimPart, TQT_SIGNAL( destroyed( TQObject * ) ),
+ TQObject::connect( pimPart, TQT_SIGNAL( destroyed( TQObject * ) ),
TQT_SLOT( slotPartDestroyed( TQObject * ) ) );
} else {
// TODO move to KParts::ComponentFactory