From 7d4c0c5e7ed2ef0a87008db2250d4ae5aff8609a Mon Sep 17 00:00:00 2001 From: Alexander Levin Date: Tue, 6 Jul 2010 16:53:52 +0000 Subject: Rename functions so that the code is easier to read git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27313 a1c6a512-1295-4272-9138-f99709370657 --- apps/bookmark.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'apps/bookmark.c') diff --git a/apps/bookmark.c b/apps/bookmark.c index b8d41c7464..b2ff1aafbc 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -94,7 +94,7 @@ static const char* get_bookmark_info(int list_index, char *buffer, size_t buffer_len); static char* select_bookmark(const char* bookmark_file_name, bool show_dont_resume); -static bool system_check(void); +static bool is_bookmarkable_state(void); static bool write_bookmark(bool create_bookmark_file, const char *bookmark); static int get_bookmark_count(const char* bookmark_file_name); @@ -125,7 +125,7 @@ bool bookmark_create_menu(void) /* ----------------------------------------------------------------------- */ bool bookmark_load_menu(void) { - if (system_check()) + if (is_bookmarkable_state()) { char* name = playlist_get_name(NULL, global_temp_buffer, sizeof(global_temp_buffer)); @@ -167,11 +167,11 @@ bool bookmark_autobookmark(bool prompt_ok) { char* bookmark; bool update = false; - if (!system_check()) + if (!is_bookmarkable_state()) return false; audio_pause(); /* first pause playback */ - if (global_settings.autoupdatebookmark && bookmark_exist()) + if (global_settings.autoupdatebookmark && bookmark_exists()) update = true; bookmark = create_bookmark(); /* Workaround for inability to speak when paused: all callers will @@ -324,7 +324,7 @@ static char* create_bookmark() int resume_index = 0; char *file; - if (!system_check()) + if (!is_bookmarkable_state()) return NULL; /* something didn't happen correctly, do nothing */ /* grab the currently playing track */ @@ -1063,11 +1063,11 @@ static bool generate_bookmark_file_name(const char *in) /* ----------------------------------------------------------------------- */ /* Returns true if a bookmark file exists for the current playlist */ /* ----------------------------------------------------------------------- */ -bool bookmark_exist(void) +bool bookmark_exists(void) { bool exist=false; - if(system_check()) + if(is_bookmarkable_state()) { char* name = playlist_get_name(NULL, global_temp_buffer, sizeof(global_temp_buffer)); @@ -1084,7 +1084,7 @@ bool bookmark_exist(void) /* Checks the current state of the system and returns true if it is in a */ /* bookmarkable state. */ /* ----------------------------------------------------------------------- */ -static bool system_check(void) +static bool is_bookmarkable_state(void) { int resume_index = 0; -- cgit v1.2.3