diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-04-22 10:00:50 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-22 10:00:50 (GMT) |
commit | 0a6110b16aa32021f9a799b7370a047cb764b4f2 (patch) | |
tree | f1b2ab098d3866b6ca83afc22935706d0916c3b7 | |
parent | 17ac6f6f59f858e1c17de019caccab994205d0e4 (diff) | |
parent | 55bdda94dc8661dc740e26e6fb91beb7e2bb7ec7 (diff) | |
download | Doxygen-0a6110b16aa32021f9a799b7370a047cb764b4f2.zip Doxygen-0a6110b16aa32021f9a799b7370a047cb764b4f2.tar.gz Doxygen-0a6110b16aa32021f9a799b7370a047cb764b4f2.tar.bz2 |
Merge pull request #695 from albert-github/feature/bug_internal_docu
Correction internal documentation
-rw-r--r-- | src/context.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/context.cpp b/src/context.cpp index 896c4e0..4584920 100644 --- a/src/context.cpp +++ b/src/context.cpp @@ -246,7 +246,6 @@ class PropertyMapper /** Add a property to the map * @param[in] name The name of the property to add. - * @param[in] obj The object handling access to the property. * @param[in] handle The method to call when the property is accessed. */ void addProperty(const char *name,typename PropertyFunc::Handler handle) @@ -262,6 +261,7 @@ class PropertyMapper } /** Gets the value of a property. + * @param[in] obj The object handling access to the property. * @param[in] name The name of the property. * @returns A variant representing the properties value or an * invalid variant if it was not found. |