summaryrefslogtreecommitdiff
path: root/include/svtools/acceleratorexecute.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-19 11:18:00 +0200
committerNoel Grandin <noel@peralex.com>2014-03-24 08:12:07 +0200
commit83d807ba78bfc0b1648e0b574af0d490352bc469 (patch)
tree224008f77519a8682f46640378fee08cd09e78a6 /include/svtools/acceleratorexecute.hxx
parentcc20f52a15abb218284ec69da25c75919f4947c9 (diff)
svtools: sal_Bool->bool and remove virtual
remove virtual from AcceleratorExecute::execute because nothing seems to override it. Change-Id: Idac00ce421f2a46921347b976b7658aac9097ee2
Diffstat (limited to 'include/svtools/acceleratorexecute.hxx')
-rw-r--r--include/svtools/acceleratorexecute.hxx8
1 files changed, 4 insertions, 4 deletions
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.
*