summaryrefslogtreecommitdiffstats
path: root/registry/source/regimpl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-08 14:55:43 +0200
committerNoel Grandin <noel@peralex.com>2015-04-09 08:41:11 +0200
commite2931bce34a274167da52792d07b19743d488aa0 (patch)
tree94935326a3b5753335ff507463393db63a325c6e /registry/source/regimpl.cxx
parentconvert RT_ACCESS fields to scoped enum (diff)
downloadcore-e2931bce34a274167da52792d07b19743d488aa0.tar.gz
core-e2931bce34a274167da52792d07b19743d488aa0.zip
convert RTMethodMode to scoped enum
Change-Id: I81599570698eb92abf14fa6386d8545c2031e863
Diffstat (limited to 'registry/source/regimpl.cxx')
-rw-r--r--registry/source/regimpl.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/registry/source/regimpl.cxx b/registry/source/regimpl.cxx
index 09afcc0c5cb7..50085b419420 100644
--- a/registry/source/regimpl.cxx
+++ b/registry/source/regimpl.cxx
@@ -294,19 +294,19 @@ void dumpType(typereg::Reader const & reader, OString const & indent) {
printf("\n");
printf("%s flags: ", indent.getStr());
switch (reader.getMethodFlags(i)) {
- case RT_MODE_ONEWAY:
+ case RTMethodMode::ONEWAY:
printf("oneway");
break;
- case RT_MODE_TWOWAY:
+ case RTMethodMode::TWOWAY:
printf("synchronous");
break;
- case RT_MODE_ATTRIBUTE_GET:
+ case RTMethodMode::ATTRIBUTE_GET:
printf("attribute get");
break;
- case RT_MODE_ATTRIBUTE_SET:
+ case RTMethodMode::ATTRIBUTE_SET:
printf("attribute set");
break;