Skip to content

Commit

Permalink
fixes spelling mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
acegoal07 committed Apr 11, 2024
1 parent 86dd162 commit 328cefa
Show file tree
Hide file tree
Showing 22 changed files with 26 additions and 21 deletions.
7 changes: 6 additions & 1 deletion nfc_playlist.h
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
#pragma once
#include <furi.h>
#include <furi_hal.h>

#include <string.h>
#include <gui/gui.h>

#include <assets_icons.h>

#include <gui/gui.h>
#include <gui/view_dispatcher.h>
#include <gui/scene_manager.h>
#include <gui/modules/popup.h>
Expand All @@ -13,7 +16,9 @@
#include <gui/modules/text_input.h>
#include <gui/modules/widget.h>
#include <gui/modules/widget_elements/widget_element.h>

#include <notification/notification_messages.h>

#include <nfc_playlist_worker.h>

typedef enum {
Expand Down
20 changes: 10 additions & 10 deletions nfc_playlist_i.h
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#pragma once
#include "scences/main_menu.h"
#include "scences/settings.h"
#include "scences/emulation.h"
#include "scences/playlist_select.h"
#include "scences/file_edit.h"
#include "scences/file_rename.h"
#include "scences/confirm_delete.h"
#include "scences/view_playlist_content.h"
#include "scences/nfc_select.h"
#include "scences/name_new_file.h"
#include "scenes/main_menu.h"
#include "scenes/settings.h"
#include "scenes/emulation.h"
#include "scenes/playlist_select.h"
#include "scenes/file_edit.h"
#include "scenes/file_rename.h"
#include "scenes/confirm_delete.h"
#include "scenes/view_playlist_content.h"
#include "scenes/nfc_select.h"
#include "scenes/name_new_file.h"
2 changes: 1 addition & 1 deletion scences/confirm_delete.c → scenes/confirm_delete.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/confirm_delete.h"
#include "scenes/confirm_delete.h"

void nfc_playlist_confirm_delete_menu_callback(GuiButtonType result, InputType type, void* context) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/emulation.c → scenes/emulation.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/emulation.h"
#include "scenes/emulation.h"

NfcPlaylistEmulationState EmulationState = NfcPlaylistEmulationState_Stopped;

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/file_edit.c → scenes/file_edit.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/file_edit.h"
#include "scenes/file_edit.h"

void nfc_playlist_file_edit_menu_callback(void* context, uint32_t index) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/file_rename.c → scenes/file_rename.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/file_rename.h"
#include "scenes/file_rename.h"

void nfc_playlist_file_rename_menu_callback(void* context) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/main_menu.c → scenes/main_menu.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/main_menu.h"
#include "scenes/main_menu.h"

void nfc_playlist_main_menu_menu_callback(void* context, uint32_t index) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/name_new_file.c → scenes/name_new_file.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/name_new_file.h"
#include "scenes/name_new_file.h"

void nfc_playlist_name_new_file_menu_callback(void* context) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/nfc_select.c → scenes/nfc_select.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/nfc_select.h"
#include "scenes/nfc_select.h"

void nfc_playlist_nfc_select_menu_callback(void* context) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/playlist_select.c → scenes/playlist_select.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/playlist_select.h"
#include "scenes/playlist_select.h"

void nfc_playlist_playlist_select_menu_callback(void* context) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion scences/settings.c → scenes/settings.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/settings.h"
#include "scenes/settings.h"

void nfc_playlist_settings_menu_callback(void* context, uint32_t index) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#include "nfc_playlist.h"
#include "scences/view_playlist_content.h"
#include "scenes/view_playlist_content.h"

void nfc_playlist_view_playlist_content_scene_on_enter(void* context) {
NfcPlaylist* nfc_playlist = context;
Expand Down
File renamed without changes.

0 comments on commit 328cefa

Please sign in to comment.