瀏覽代碼

Rename function to be keyboard-specific

Damien Pollet 9 年之前
父節點
當前提交
acd64aa841
共有 2 個文件被更改,包括 4 次插入4 次删除
  1. 2 2
      tmk_core/common/action.c
  2. 2 2
      tmk_core/common/action.h

+ 2 - 2
tmk_core/common/action.c

@@ -54,7 +54,7 @@ void action_exec(keyevent_t event)
 }
 
 __attribute__ ((weak))
-void process_action_user(keyrecord_t *record) {}
+void process_action_kb(keyrecord_t *record) {}
 
 void process_action(keyrecord_t *record)
 {
@@ -65,7 +65,7 @@ void process_action(keyrecord_t *record)
 
     if (IS_NOEVENT(event)) { return; }
 
-    process_action_user(record);
+    process_action_kb(record);
 
     action_t action = layer_switch_get_action(event.key);
     dprint("ACTION: "); debug_action(action);

+ 2 - 2
tmk_core/common/action.h

@@ -58,8 +58,8 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt);
 /* user defined special function */
 void action_function(keyrecord_t *record, uint8_t id, uint8_t opt);
 
-/* user-defined (pre)processing of each key event */
-void process_action_user(keyrecord_t *record);
+/* keyboard-specific key event (pre)processing */
+void process_action_kb(keyrecord_t *record);
 
 /* Utilities for actions.  */
 void process_action(keyrecord_t *record);