summaryrefslogtreecommitdiffstats
path: root/src/interfaceframework/qifabstractfeature.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaceframework/qifabstractfeature.cpp')
-rw-r--r--src/interfaceframework/qifabstractfeature.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/interfaceframework/qifabstractfeature.cpp b/src/interfaceframework/qifabstractfeature.cpp
index 5aff3e0a..d5d072ad 100644
--- a/src/interfaceframework/qifabstractfeature.cpp
+++ b/src/interfaceframework/qifabstractfeature.cpp
@@ -737,9 +737,9 @@ bool QIfAbstractFeature::acceptServiceObject(QIfServiceObject *serviceObject)
When reimplementing please keep in mind to connect all signals before calling this function. e.g.
- /code
+ \code
void SimpleFeature::connectToServiceObject(QIfServiceObject *serviceObject)
- {
+ {
SimpleFeatureBackendInterface *backend = backend(serviceObject);
if (!backend)
return;
@@ -752,8 +752,8 @@ bool QIfAbstractFeature::acceptServiceObject(QIfServiceObject *serviceObject)
QIfAbstractFeature::connectToServiceObject(serviceObject);
// Additional initialization functions can be added here
- }
- /endcode
+ }
+ \endcode
\sa acceptServiceObject(), disconnectFromServiceObject(), clearServiceObject()
*/