summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schanda <schanda@itestra.de>2013-05-10 13:00:28 +0200
committerJohannes Schanda <schanda@itestra.de>2013-05-10 13:00:28 +0200
commite81eb8cbd56a60457664ed72fcf36c531a61e74c (patch)
tree57e393360dfdb13ffbe710f7d738e43cb86c2044
parent9172b25386ddd12cde97ad5382d7968f8437a53d (diff)
downloadgenivi-common-api-runtime-e81eb8cbd56a60457664ed72fcf36c531a61e74c.tar.gz
Change attribute sync getter to match all other sync signatures, typo
-rw-r--r--src/CommonAPI/Attribute.h2
-rw-r--r--src/CommonAPI/Runtime.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/CommonAPI/Attribute.h b/src/CommonAPI/Attribute.h
index 8295a3e..d9c2391 100644
--- a/src/CommonAPI/Attribute.h
+++ b/src/CommonAPI/Attribute.h
@@ -39,7 +39,7 @@ class ReadonlyAttribute {
* @param value Reference to be filled with value.
* @return Call status of the operation.
*/
- virtual CallStatus getValue(_ValueType& value) const = 0;
+ virtual void getValue(CallStatus& callStaus, _ValueType& value) const = 0;
/**
* \brief Get value of attribute, usually from remote. Asynchronous call.
diff --git a/src/CommonAPI/Runtime.h b/src/CommonAPI/Runtime.h
index e52f740..bc86062 100644
--- a/src/CommonAPI/Runtime.h
+++ b/src/CommonAPI/Runtime.h
@@ -74,7 +74,7 @@ class Runtime {
/**
* \brief Create a factory for the loaded runtime
*
- * Create a factory for the loaded runtime
+ * Create a factory for the loaded rluntime
*
* @return Factory object for the loaded runtime
*/