summaryrefslogtreecommitdiff
path: root/vcl/source/window/keycod.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/keycod.cxx')
-rw-r--r--vcl/source/window/keycod.cxx13
1 files changed, 0 insertions, 13 deletions
diff --git a/vcl/source/window/keycod.cxx b/vcl/source/window/keycod.cxx
index a31ba0a2b61d..78f9b863ca10 100644
--- a/vcl/source/window/keycod.cxx
+++ b/vcl/source/window/keycod.cxx
@@ -17,7 +17,6 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <salinst.hxx>
#include <salframe.hxx>
#include <svdata.hxx>
@@ -27,8 +26,6 @@
#include <tools/rc.h>
-
-
static const sal_uInt16 aImplKeyFuncTab[(KEYFUNC_FRONT+1)*4] =
{
0, 0, 0, 0, // KEYFUNC_DONTKNOW
@@ -52,8 +49,6 @@ static const sal_uInt16 aImplKeyFuncTab[(KEYFUNC_FRONT+1)*4] =
0, 0, 0, 0 // KEYFUNC_FRONT
};
-
-
void ImplGetKeyCode( KeyFuncType eFunc, sal_uInt16& rCode1, sal_uInt16& rCode2, sal_uInt16& rCode3, sal_uInt16& rCode4 )
{
sal_uInt16 nIndex = (sal_uInt16)eFunc;
@@ -64,8 +59,6 @@ void ImplGetKeyCode( KeyFuncType eFunc, sal_uInt16& rCode1, sal_uInt16& rCode2,
rCode4 = aImplKeyFuncTab[nIndex+3];
}
-
-
KeyCode::KeyCode( KeyFuncType eFunction )
{
sal_uInt16 nDummy;
@@ -73,8 +66,6 @@ KeyCode::KeyCode( KeyFuncType eFunction )
eFunc = eFunction;
}
-
-
KeyCode::KeyCode( const ResId& rResId )
: nCode(0)
, eFunc(KEYFUNC_DONTKNOW)
@@ -101,8 +92,6 @@ KeyCode::KeyCode( const ResId& rResId )
}
}
-
-
OUString KeyCode::GetName( Window* pWindow ) const
{
if ( !pWindow )
@@ -110,8 +99,6 @@ OUString KeyCode::GetName( Window* pWindow ) const
return pWindow ? pWindow->ImplGetFrame()->GetKeyName( GetFullCode() ) : "";
}
-
-
KeyFuncType KeyCode::GetFunction() const
{
if ( eFunc != KEYFUNC_DONTKNOW )