refs #313 Fix argument by const reference

This commit is contained in:
Roland Winklmeier
2014-08-05 11:35:48 +02:00
parent 2f527f72c3
commit 8e16f9619f
7 changed files with 7 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ namespace BlackInput
* \param key
* \param isPressed
*/
virtual void triggerKey(const BlackMisc::Hardware::CKeyboardKey key, bool isPressed) = 0;
virtual void triggerKey(const BlackMisc::Hardware::CKeyboardKey &key, bool isPressed) = 0;
//! Creates a native keyboard handler object
static IKeyboard *getInstance();