summaryrefslogtreecommitdiffstats
path: root/kontact/DESIGN.dcopinteraction
diff options
context:
space:
mode:
Diffstat (limited to 'kontact/DESIGN.dcopinteraction')
-rw-r--r--kontact/DESIGN.dcopinteraction10
1 files changed, 5 insertions, 5 deletions
diff --git a/kontact/DESIGN.dcopinteraction b/kontact/DESIGN.dcopinteraction
index d51fd886..7eb4e412 100644
--- a/kontact/DESIGN.dcopinteraction
+++ b/kontact/DESIGN.dcopinteraction
@@ -20,12 +20,12 @@ Here are some code snippets that must go into the part (A) that wants to use "Fo
* Constructor:
m_foo_stub = 0L;
- kapp->dcopClient()->setNotifications( true );
- connect( kapp->dcopClient(), SIGNAL( applicationRemoved( const QCString&)),
- this, SLOT( unregisteredFromDCOP( const QCString& )) );
+ tdeApp->dcopClient()->setNotifications( true );
+ connect( tdeApp->dcopClient(), TQ_SIGNAL( applicationRemoved( const QCString&)),
+ this, TQ_SLOT( unregisteredFromDCOP( const QCString& )) );
* Destructor:
- kapp->dcopClient()->setNotifications( false );
+ tdeApp->dcopClient()->setNotifications( false );
delete m_foo_stub;
[Note that setNotifications() is implemented with a refcount, this is the
@@ -74,7 +74,7 @@ See e.g. tdepim/kaddressbook/kaddressbook.desktop
Designing DCOP interfaces
=========================
-Porting the kroupware Q_SIGNALS/Q_SLOTS to DCOP requires some changes.
+Porting the kroupware signals/slots to DCOP requires some changes.
For instance any non-const reference (such as those used for returning
values to the caller) has to be changed. If there is more than one
value to be returned, you need to