1
0
mirror of https://github.com/KanjiVG/kanjivg.git synced 2026-04-20 12:30:42 +02:00

Fixed usage of realord

This commit is contained in:
Alexandre Courbot
2009-12-09 16:17:11 +09:00
parent e4b727f28f
commit 6437f9a070

View File

@@ -104,7 +104,7 @@ class StrokeGr:
if (self.element): elt = self.element
else: elt = self.original
gid = "c" + idRoot
if elt: gid += "-" + hex(ord(elt))[2:]
if elt: gid += "-" + hex(realord(elt))[2:]
else: gid += "-xxxx"
gid += "-" + str(idCpt[0])
idCpt[0] += 1