From: vsr Date: Wed, 7 Nov 2018 09:27:50 +0000 (+0300) Subject: Python 3 porting: IDLparser (attempt 2) X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=487f675ba8737808e524c4a39d57f10c2557a9e2;p=modules%2Fyacs.git Python 3 porting: IDLparser (attempt 2) --- diff --git a/src/ModuleGenerator/IDLparser.py b/src/ModuleGenerator/IDLparser.py index 8cd3c91a8..1734db43e 100644 --- a/src/ModuleGenerator/IDLparser.py +++ b/src/ModuleGenerator/IDLparser.py @@ -750,6 +750,9 @@ class ModuleCatalogVisitor (idlvisitor.AstVisitor): def visitStringType(self, type): self.currentType = "string" + def visitWStringType(self, type): + self.currentType = "wstring" + def visitParameter(self, node): node.paramType().accept(self) if node.is_in():