summaryrefslogtreecommitdiff
path: root/include/vcl/keycod.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/keycod.hxx')
-rw-r--r--include/vcl/keycod.hxx9
1 files changed, 0 insertions, 9 deletions
diff --git a/include/vcl/keycod.hxx b/include/vcl/keycod.hxx
index 405fbd5cd936..63bbf372f382 100644
--- a/include/vcl/keycod.hxx
+++ b/include/vcl/keycod.hxx
@@ -73,7 +73,6 @@ public:
KeyFuncType GetFunction() const;
- KeyCode& operator = ( const KeyCode& rKeyCode );
bool operator ==( const KeyCode& rKeyCode ) const;
bool operator !=( const KeyCode& rKeyCode ) const;
};
@@ -116,14 +115,6 @@ inline bool vcl::KeyCode::operator !=( const vcl::KeyCode& rKeyCode ) const
return (GetFunction() != rKeyCode.GetFunction());
}
-inline vcl::KeyCode& vcl::KeyCode::operator = ( const vcl::KeyCode& rKeyCode )
-{
- nKeyCodeAndModifiers = rKeyCode.nKeyCodeAndModifiers;
- eFunc = rKeyCode.eFunc;
-
- return *this;
-}
-
#endif // INCLUDED_VCL_KEYCOD_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */