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 12:29:08 +0900
commit33ba77ee894fb6368e3804458ddd52ea1a1f0909 (patch)
treec2fa9505373e0a8b85c9c8b6764dc329e882168a /kontact
parent929e1f08c9b4a2288ed122bbc54d8f25ace71375 (diff)
downloadtdepim-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 '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