From 83d807ba78bfc0b1648e0b574af0d490352bc469 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 19 Mar 2014 11:18:00 +0200 Subject: svtools: sal_Bool->bool and remove virtual remove virtual from AcceleratorExecute::execute because nothing seems to override it. Change-Id: Idac00ce421f2a46921347b976b7658aac9097ee2 --- include/svtools/acceleratorexecute.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/svtools') diff --git a/include/svtools/acceleratorexecute.hxx b/include/svtools/acceleratorexecute.hxx index 8cf6d3fe8e08..5ae1f76b2dde 100644 --- a/include/svtools/acceleratorexecute.hxx +++ b/include/svtools/acceleratorexecute.hxx @@ -180,13 +180,13 @@ class SVT_DLLPUBLIC AcceleratorExecute : private TMutexInit @param aKey specify the accelerator for execute. - @return [sal_Bool] - sal_True if this key is configured and match to a command. + @return [bool] + true if this key is configured and match to a command. Attention: This state does not mean the success state of the corresponding execute. Because its done asynchronous! */ - virtual sal_Bool execute(const KeyCode& aKey); - virtual sal_Bool execute(const css::awt::KeyEvent& aKey); + bool execute(const KeyCode& aKey); + bool execute(const css::awt::KeyEvent& aKey); /** search the command for the given key event. * -- cgit