Documentation fix.

SVN_SILENT


svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=832033
This commit is contained in:
Alex Merry 2008-07-13 22:00:03 +00:00
parent b828a0efd4
commit 5668672342

View File

@ -57,12 +57,14 @@ class ServicePrivate;
* *
* Sample use might look like: * Sample use might look like:
* *
* @code
* Plasma::DataEngine *twitter = dataEngine("twitter"); * Plasma::DataEngine *twitter = dataEngine("twitter");
* Plasma::Service *service = twitter.serviceForSource("aseigo"); * Plasma::Service *service = twitter.serviceForSource("aseigo");
* KConfigGroup op = service->operationParameters("update"); * KConfigGroup op = service->operationParameters("update");
* op.writeEntry("tweet", "Hacking on plasma!"); * op.writeEntry("tweet", "Hacking on plasma!");
* Plasma::ServiceJob *job = service->startOperation(op); * Plasma::ServiceJob *job = service->startOperation(op);
* connect(job, SIGNAL(finished(KJob*)), this, SLOT(jobCompeted())); * connect(job, SIGNAL(finished(KJob*)), this, SLOT(jobCompeted()));
* @endcode
*/ */
class Service : public QObject class Service : public QObject
{ {