[Scummvm-git-logs] scummvm master -> 1b116170fa816124bc7fa16f6a75c6e0d1d938c7
bluegr
bluegr at gmail.com
Mon Jan 27 00:33:50 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
1b116170fa KEYMAPPER: Fix forward declarations of HardwareInput
Commit: 1b116170fa816124bc7fa16f6a75c6e0d1d938c7
https://github.com/scummvm/scummvm/commit/1b116170fa816124bc7fa16f6a75c6e0d1d938c7
Author: Filippos Karapetis (bluegr at gmail.com)
Date: 2020-01-27T02:33:39+02:00
Commit Message:
KEYMAPPER: Fix forward declarations of HardwareInput
Changed paths:
backends/keymapper/input-watcher.h
backends/keymapper/keymap.h
backends/keymapper/keymapper.h
diff --git a/backends/keymapper/input-watcher.h b/backends/keymapper/input-watcher.h
index 1663e1e..2f5e167 100644
--- a/backends/keymapper/input-watcher.h
+++ b/backends/keymapper/input-watcher.h
@@ -31,7 +31,7 @@
namespace Common {
-class HardwareInput;
+struct HardwareInput;
/**
* Watches events for inputs that can be bound to actions
diff --git a/backends/keymapper/keymap.h b/backends/keymapper/keymap.h
index 40a4e78..1cebd338 100644
--- a/backends/keymapper/keymap.h
+++ b/backends/keymapper/keymap.h
@@ -36,7 +36,7 @@
namespace Common {
class Action;
-class HardwareInput;
+struct HardwareInput;
class HardwareInputSet;
class KeymapperDefaultBindings;
diff --git a/backends/keymapper/keymapper.h b/backends/keymapper/keymapper.h
index 4c4a9f1..8770499 100644
--- a/backends/keymapper/keymapper.h
+++ b/backends/keymapper/keymapper.h
@@ -39,7 +39,7 @@ const char *const kGuiKeymapName = "gui";
const char *const kGlobalKeymapName = "global";
class Action;
-class HardwareInput;
+struct HardwareInput;
class HardwareInputSet;
class KeymapperDefaultBindings;
More information about the Scummvm-git-logs
mailing list