summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJannis Voelker <jannis.voelker@basyskom.com>2018-09-17 07:56:19 +0200
committerJannis Völker <jannis.voelker@basyskom.com>2018-09-17 06:41:09 +0000
commit40aee12f305da66b47a1b22f53b6927c6504edb4 (patch)
treef537f9f836a0664b86cf4c8fb23918fc1276b312 /src
parent80d9c8df82236d5651366e8f581e8e8acaa85432 (diff)
Clarify the names of the DataChangeFilter::DataChangeTrigger enum
Change-Id: Iabb22adb0fa1b89953596d07412b67ef9cb2049e Reviewed-by: Alex Blasche <alexander.blasche@qt.io>
Diffstat (limited to 'src')
-rw-r--r--src/opcua/client/qopcuamonitoringparameters.cpp4
-rw-r--r--src/opcua/client/qopcuamonitoringparameters.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/opcua/client/qopcuamonitoringparameters.cpp b/src/opcua/client/qopcuamonitoringparameters.cpp
index fd6add1..e4cb93a 100644
--- a/src/opcua/client/qopcuamonitoringparameters.cpp
+++ b/src/opcua/client/qopcuamonitoringparameters.cpp
@@ -522,8 +522,8 @@ void QOpcUaMonitoringParameters::setSamplingInterval(double samplingInterval)
Enumerates the possible triggers for a \l DataChangeFilter.
\value Status Triggers if the value's status code changes.
- \value StatusValue Triggers if the value's status code or the value itself changes.
- \value StatusValueTimestamp Triggers if the value's status code, the value itself or the source timestamp changes.
+ \value StatusOrValue Triggers if the value's status code or the value itself changes.
+ \value StatusOrValueOrTimestamp Triggers if the value's status code, the value itself or the source timestamp changes.
*/
/*!
diff --git a/src/opcua/client/qopcuamonitoringparameters.h b/src/opcua/client/qopcuamonitoringparameters.h
index 55c36dc..3ce4729 100644
--- a/src/opcua/client/qopcuamonitoringparameters.h
+++ b/src/opcua/client/qopcuamonitoringparameters.h
@@ -85,8 +85,8 @@ public:
public:
enum class DataChangeTrigger {
Status = 0,
- StatusValue = 1,
- StatusValueTimestamp = 2
+ StatusOrValue = 1,
+ StatusOrValueOrTimestamp = 2
};
enum class DeadbandType {