Skip to content
Snippets Groups Projects
Commit d6fe6761 authored by Rene Brun's avatar Rene Brun
Browse files

From Stefan:

a triviality patch in the python scripts but would be needed by POOL in
order to move to ROOT/Reflex.


git-svn-id: http://root.cern.ch/svn/root/trunk@13700 27541ba8-7e3a-0410-8455-c3a389f83636
parent 880e6749
No related branches found
No related tags found
No related merge requests found
......@@ -557,7 +557,12 @@ class genDictionary(object) :
noPublicType = self.checkAccessibleType(self.xref[a['type']])
if ( noPublicType ):
noPubTypeAttrs = self.xref[noPublicType]['attrs']
#t = string.translate(str(t), self.transtable2)[2:]
tend = ''
while t[-1] in ('*','&') :
tend = tend + t[-1]
t = t[:-1]
t = string.translate(str(t), self.transtable)[2:]
t += tend
if ( string.translate(str(self.genTypeName(noPubTypeAttrs['id'])), self.transtable) not in self.generated_shadow_classes ):
c += self.genClassShadow(noPubTypeAttrs)
if t[-1] == ']' : c += indent + ' %s %s;\n' % ( t[:t.find('[')], a['name']+t[t.find('['):] )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment