소스 검색

CLang format

alex.kopachov 2 년 전
부모
커밋
3ac5311cd3
2개의 변경된 파일6개의 추가작업 그리고 2개의 파일을 삭제
  1. 3 1
      totp/ui/scenes/add_new_token/totp_scene_add_new_token.c
  2. 3 1
      totp/ui/scenes/add_new_token/totp_scene_add_new_token.h

+ 3 - 1
totp/ui/scenes/add_new_token/totp_scene_add_new_token.c

@@ -176,7 +176,9 @@ void update_screen_y_offset(SceneState* scene_state) {
     }
 }
 
-bool totp_scene_add_new_token_handle_event(const PluginEvent* const event, PluginState* plugin_state) {
+bool totp_scene_add_new_token_handle_event(
+    const PluginEvent* const event,
+    PluginState* plugin_state) {
     if(event->type != EventTypeKey) {
         return true;
     }

+ 3 - 1
totp/ui/scenes/add_new_token/totp_scene_add_new_token.h

@@ -6,5 +6,7 @@
 
 void totp_scene_add_new_token_activate(PluginState* plugin_state);
 void totp_scene_add_new_token_render(Canvas* const canvas, const PluginState* plugin_state);
-bool totp_scene_add_new_token_handle_event(const PluginEvent* const event, PluginState* plugin_state);
+bool totp_scene_add_new_token_handle_event(
+    const PluginEvent* const event,
+    PluginState* plugin_state);
 void totp_scene_add_new_token_deactivate(PluginState* plugin_state);