summaryrefslogtreecommitdiff
path: root/vcl/source/window/accmgr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/source/window/accmgr.cxx')
-rw-r--r--vcl/source/window/accmgr.cxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/vcl/source/window/accmgr.cxx b/vcl/source/window/accmgr.cxx
index e3bccd74ca41..a5dfaba99e5b 100644
--- a/vcl/source/window/accmgr.cxx
+++ b/vcl/source/window/accmgr.cxx
@@ -17,26 +17,18 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-
#include <tools/debug.hxx>
#include <accel.h>
#include <vcl/accel.hxx>
#include <accmgr.hxx>
-
-
-
-
-
ImplAccelManager::~ImplAccelManager()
{
delete mpAccelList;
delete mpSequenceList;
}
-
-
bool ImplAccelManager::InsertAccel( Accelerator* pAccel )
{
if ( !mpAccelList ) {
@@ -53,8 +45,6 @@ bool ImplAccelManager::InsertAccel( Accelerator* pAccel )
return true;
}
-
-
void ImplAccelManager::RemoveAccel( Accelerator* pAccel )
{
// do we have a list ?
@@ -90,8 +80,6 @@ void ImplAccelManager::RemoveAccel( Accelerator* pAccel )
}
}
-
-
void ImplAccelManager::EndSequence( bool bCancel )
{
// are we in a list ?
@@ -118,8 +106,6 @@ void ImplAccelManager::EndSequence( bool bCancel )
mpSequenceList = NULL;
}
-
-
bool ImplAccelManager::IsAccelKey( const KeyCode& rKeyCode, sal_uInt16 nRepeat )
{
Accelerator* pAccel;