summaryrefslogtreecommitdiffstats
path: root/WebKit/chromium/public/WebLabelElement.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/chromium/public/WebLabelElement.h')
-rw-r--r--WebKit/chromium/public/WebLabelElement.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/WebKit/chromium/public/WebLabelElement.h b/WebKit/chromium/public/WebLabelElement.h
index 3e97c39..eb9b06d 100644
--- a/WebKit/chromium/public/WebLabelElement.h
+++ b/WebKit/chromium/public/WebLabelElement.h
@@ -44,15 +44,15 @@ namespace WebKit {
class WebLabelElement : public WebElement {
public:
WebLabelElement() : WebElement() { }
- WebLabelElement(const WebLabelElement& e) : WebElement(e) { }
+ WebLabelElement(const WebLabelElement& element) : WebElement(element) { }
- WebLabelElement& operator=(const WebLabelElement& e)
+ WebLabelElement& operator=(const WebLabelElement& element)
{
- WebElement::assign(e);
+ WebElement::assign(element);
return *this;
}
- WEBKIT_API void assign(const WebLabelElement& e) { WebElement::assign(e); }
+ void assign(const WebLabelElement& element) { WebElement::assign(element); }
WEBKIT_API WebElement correspondingControl();