summaryrefslogtreecommitdiffstats
path: root/WebCore/bindings/scripts/test/CPP/WebDOMTestObj.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/bindings/scripts/test/CPP/WebDOMTestObj.cpp')
-rw-r--r--WebCore/bindings/scripts/test/CPP/WebDOMTestObj.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/bindings/scripts/test/CPP/WebDOMTestObj.cpp b/WebCore/bindings/scripts/test/CPP/WebDOMTestObj.cpp
index 9cceb3c..579295f 100644
--- a/WebCore/bindings/scripts/test/CPP/WebDOMTestObj.cpp
+++ b/WebCore/bindings/scripts/test/CPP/WebDOMTestObj.cpp
@@ -199,7 +199,7 @@ void WebDOMTestObj::setXMLObjAttr(const WebDOMTestObj& newXMLObjAttr)
impl()->setXMLObjAttr(toWebCore(newXMLObjAttr));
}
-bool WebDOMTestObj::CREATE() const
+bool WebDOMTestObj::create() const
{
if (!impl())
return false;
@@ -207,12 +207,12 @@ bool WebDOMTestObj::CREATE() const
return impl()->isCreate();
}
-void WebDOMTestObj::setCREATE(bool newCREATE)
+void WebDOMTestObj::setCreate(bool newCreate)
{
if (!impl())
return;
- impl()->setCreate(newCREATE);
+ impl()->setCreate(newCreate);
}
WebDOMString WebDOMTestObj::reflectedStringAttr() const