diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-06-05 23:13:14 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-06-06 14:02:11 +0200 |
commit | be733676d3d9c1e376066301f5e5b1849608d4d8 (patch) | |
tree | 0ecf3a10d794d2a85eaedc69df33798052c5f02a | |
parent | 38a809d9497006e570847d899c8b7c738bca6136 (diff) |
-Werror,-Wsemicolon-before-method-body (Clang)
Change-Id: I1e4d7f1a719712d9665d30bab756ba5b0feaddad
-rw-r--r-- | extensions/source/plugin/aqua/sysplug.mm | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/extensions/source/plugin/aqua/sysplug.mm b/extensions/source/plugin/aqua/sysplug.mm index 6797f2ae5743..4b3363e5dec2 100644 --- a/extensions/source/plugin/aqua/sysplug.mm +++ b/extensions/source/plugin/aqua/sysplug.mm @@ -196,7 +196,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)mouseDown: (NSEvent*)i_pEvent; +-(void)mouseDown: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -204,7 +204,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)mouseDragged: (NSEvent*)i_pEvent; +-(void)mouseDragged: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -212,7 +212,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)mouseUp: (NSEvent*)i_pEvent; +-(void)mouseUp: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -220,7 +220,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)rightMouseDown: (NSEvent*)i_pEvent; +-(void)rightMouseDown: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -228,7 +228,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)rightMouseDragged: (NSEvent*)i_pEvent; +-(void)rightMouseDragged: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -236,7 +236,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)rightMouseUp: (NSEvent*)i_pEvent; +-(void)rightMouseUp: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -244,7 +244,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)otherMouseDown: (NSEvent*)i_pEvent; +-(void)otherMouseDown: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -252,7 +252,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)otherMouseDragged: (NSEvent*)i_pEvent; +-(void)otherMouseDragged: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -260,7 +260,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)otherMouseUp: (NSEvent*)i_pEvent; +-(void)otherMouseUp: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -268,7 +268,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)mouseEntered: (NSEvent*)i_pEvent; +-(void)mouseEntered: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; @@ -276,7 +276,7 @@ struct FakeEventRecord : public EventRecord m_pCom->NPP_HandleEvent( m_pImpl->getNPPInstance(), &aRec ); } --(void)mouseExited: (NSEvent*)i_pEvent; +-(void)mouseExited: (NSEvent*)i_pEvent { (void) i_pEvent; // unused FakeEventRecord aRec; |