summaryrefslogtreecommitdiff
path: root/vcl/source/app
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-07-11 13:17:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-07-11 16:40:42 +0100
commit28dfd3a2e2c6a39626c55fce2303c83eea210e55 (patch)
tree58940b2c031ae68b8116fa1921af221ad3f6c73a /vcl/source/app
parent0a01387f059357600cf3dbccdab65cdae517c709 (diff)
callcatcher: remove unused Application::GetReservedKeyCodeDescription
Diffstat (limited to 'vcl/source/app')
-rw-r--r--vcl/source/app/svapp.cxx12
1 files changed, 0 insertions, 12 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index fad5ad84ac7d..e6619cbfd20b 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -417,18 +417,6 @@ const KeyCode* Application::GetReservedKeyCode( sal_uLong i )
return &ImplReservedKeys::get()->first[i].mKeyCode;
}
-String Application::GetReservedKeyCodeDescription( sal_uLong i )
-{
- ResMgr* pResMgr = ImplGetResMgr();
- if( ! pResMgr )
- return String();
- ImplReservedKey *pImplReservedKeys = ImplReservedKeys::get()->first;
- if( i >= GetReservedKeyCodeCount() || ! pImplReservedKeys[i].mnResId )
- return String();
- else
- return String( ResId( pImplReservedKeys[i].mnResId, *pResMgr ) );
-}
-
// -----------------------------------------------------------------------
void Application::Execute()