summaryrefslogtreecommitdiff
path: root/src/formats/osxml/OsxmlEventParser.cpp
diff options
context:
space:
mode:
authorAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-15 20:58:05 +0100
committerAndreas Stöckel <astoecke@techfak.uni-bielefeld.de>2015-02-15 20:58:05 +0100
commitb7ffeb3dca889aee1c878e2ef0f07644f910dba2 (patch)
treeaeb0641149cbbdc0c7c7984eca2e0b5c0cf2edef /src/formats/osxml/OsxmlEventParser.cpp
parente2e32eef55406519c744002a404e7e5ca66b29a1 (diff)
Made OsxmlEvents interface consistent with Stack commands
Diffstat (limited to 'src/formats/osxml/OsxmlEventParser.cpp')
-rw-r--r--src/formats/osxml/OsxmlEventParser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/formats/osxml/OsxmlEventParser.cpp b/src/formats/osxml/OsxmlEventParser.cpp
index b4aff77..7404960 100644
--- a/src/formats/osxml/OsxmlEventParser.cpp
+++ b/src/formats/osxml/OsxmlEventParser.cpp
@@ -329,7 +329,7 @@ static void xmlStartElementHandler(void *ref, const XML_Char *name,
// Just issue a "commandStart" event in any other case
Variant nameVar = Variant::fromString(nameStr);
nameVar.setLocation(nameLoc);
- parser->getEvents().commandStart(nameVar, args);
+ parser->getEvents().command(nameVar, args);
}
}