diff options
author | tmk <nobody@nowhere> | 2013-04-02 17:44:24 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-04-02 17:44:24 +0900 |
commit | c6d88d27956c4b76f8819fcdb076bf94a8f55868 (patch) | |
tree | 3b294d4282ed2ed06b0d155f81ff97385e6b024d /common | |
parent | cc8e66754b1a5d0c11985cb0feb51ead49668744 (diff) |
Rename file layer_switch to action_layer
Diffstat (limited to 'common')
-rw-r--r-- | common/action.c | 2 | ||||
-rw-r--r-- | common/action_layer.c (renamed from common/layer_switch.c) | 2 | ||||
-rw-r--r-- | common/action_layer.h (renamed from common/layer_switch.h) | 4 | ||||
-rw-r--r-- | common/command.c | 2 | ||||
-rw-r--r-- | common/keymap.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/common/action.c b/common/action.c index 596831d4de..158522dd03 100644 --- a/common/action.c +++ b/common/action.c @@ -21,7 +21,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "command.h" #include "debug.h" #include "led.h" -#include "layer_switch.h" +#include "action_layer.h" #include "action_tapping.h" #include "action_oneshot.h" #include "action_macro.h" diff --git a/common/layer_switch.c b/common/action_layer.c index 9905741f48..3413c53e65 100644 --- a/common/layer_switch.c +++ b/common/action_layer.c @@ -3,7 +3,7 @@ #include "action.h" #include "debug.h" #include "util.h" -#include "layer_switch.h" +#include "action_layer.h" /* diff --git a/common/layer_switch.h b/common/action_layer.h index ed8dfb5025..23f8a00bb7 100644 --- a/common/layer_switch.h +++ b/common/action_layer.h @@ -14,8 +14,8 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ -#ifndef LAYER_SWITCH_H -#define LAYER_SWITCH_H +#ifndef ACTION_LAYER_H +#define ACTION_LAYER_H #include <stdint.h> #include "keyboard.h" diff --git a/common/command.c b/common/command.c index c954ff02f4..dc06c6da35 100644 --- a/common/command.c +++ b/common/command.c @@ -26,7 +26,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "timer.h" #include "keyboard.h" #include "bootloader.h" -#include "layer_switch.h" +#include "action_layer.h" #include "eeconfig.h" #include "sleep_led.h" #include "led.h" diff --git a/common/keymap.c b/common/keymap.c index ace3f49b69..c98ce09b66 100644 --- a/common/keymap.c +++ b/common/keymap.c @@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "keymap.h" #include "report.h" #include "keycode.h" -#include "layer_switch.h" +#include "action_layer.h" #include "action.h" #include "action_macro.h" #include "debug.h" |