diff options
Diffstat (limited to 'webkit/api/public/WebForm.h')
-rw-r--r-- | webkit/api/public/WebForm.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/webkit/api/public/WebForm.h b/webkit/api/public/WebForm.h index 23a4ace..6178b9c 100644 --- a/webkit/api/public/WebForm.h +++ b/webkit/api/public/WebForm.h @@ -50,7 +50,11 @@ public: WebForm() : m_private(0) { } WebForm(const WebForm& f) : m_private(0) { assign(f); } - WebForm& operator=(const WebForm& f) { assign(f); return *this; } + WebForm& operator=(const WebForm& f) + { + assign(f); + return *this; + } WEBKIT_API void reset(); WEBKIT_API void assign(const WebForm&); |