summaryrefslogtreecommitdiffstats
path: root/src/uscxml/debug/Breakpoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/debug/Breakpoint.cpp')
-rw-r--r--src/uscxml/debug/Breakpoint.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/debug/Breakpoint.cpp b/src/uscxml/debug/Breakpoint.cpp
index e66e0fb..d7eb2af 100644
--- a/src/uscxml/debug/Breakpoint.cpp
+++ b/src/uscxml/debug/Breakpoint.cpp
@@ -19,7 +19,7 @@
#include "uscxml/debug/Breakpoint.h"
#include "uscxml/Interpreter.h"
-#include "uscxml/DOMUtils.h"
+#include "uscxml/dom/DOMUtils.h"
namespace uscxml {
@@ -223,7 +223,7 @@ bool Breakpoint::matches(Interpreter interpreter, const Breakpoint& other) const
return false;
}
- if(eventName.length() > 0 && !InterpreterImpl::nameMatch(eventName, other.eventName)) {
+ if(eventName.length() > 0 && !nameMatch(eventName, other.eventName)) {
return false;
}