diff options
Diffstat (limited to 'kontact')
-rw-r--r-- | kontact/DESIGN.dcopinteraction | 2 | ||||
-rw-r--r-- | kontact/Thoughts | 2 | ||||
-rw-r--r-- | kontact/interfaces/core.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/kontact/DESIGN.dcopinteraction b/kontact/DESIGN.dcopinteraction index 950b9eea3..d51fd8863 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 c43324258..a76014535 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 3c270aa83..5cc30c2c0 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 |