summaryrefslogtreecommitdiffstats
path: root/kmail/Mainpage.dox
diff options
context:
space:
mode:
Diffstat (limited to 'kmail/Mainpage.dox')
-rw-r--r--kmail/Mainpage.dox6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmail/Mainpage.dox b/kmail/Mainpage.dox
index 1a4879f3b..148f9e60c 100644
--- a/kmail/Mainpage.dox
+++ b/kmail/Mainpage.dox
@@ -71,7 +71,7 @@ is not modal and the user may hit apply/ok anytime between calls to
function that want to use the identity reference. Store the UOID
instead if you need to keep track of the identity. You may also want
to connect to one of the KPIM::IdentityManager::changed() or ::deleted()
-Q_SIGNALS, if you want to do special processing in case the identity
+signals, if you want to do special processing in case the identity
changes.
Thus, in the ConfigureDialog, you will see non-const KPIM::Identity
@@ -277,7 +277,7 @@ accessed via KMKernel ( the "kmkernel" construct ). Those methods are :
FolderJob classes - These classes allow asynchronous operations on
KMFolder's. You create a Job on the heap, connect to one of its
-Q_SIGNALS and wait for the job to finish. Folders serve as FolderJob
+signals and wait for the job to finish. Folders serve as FolderJob
factories. For example, to retrieve the full message from a folder
you do :
@@ -859,7 +859,7 @@ public:
QTimer::singleShot( 10*1000, this, TQ_SLOT(slotTimeout()) );
}
-private Q_SLOTS:
+private slots:
void slotTimeout() { notify(): }
private: