diff options
author | Max Kellermann <max@duempel.org> | 2008-09-17 12:25:52 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-09-17 12:25:52 +0200 |
commit | 51f4e9634dc17f7b433967b0cc46a0945cf26b85 (patch) | |
tree | c0860db9b3e36781ec6556b7df421b5278c32b79 /src | |
parent | 3a278a50a6cc0df63c862a6bdee95d158b74e625 (diff) | |
download | mpd-51f4e9634dc17f7b433967b0cc46a0945cf26b85.tar.gz mpd-51f4e9634dc17f7b433967b0cc46a0945cf26b85.tar.xz mpd-51f4e9634dc17f7b433967b0cc46a0945cf26b85.zip |
list_window: don't reset *highlight to 0
Since the list_window code sets highlight to 0 before it calls the
list_callback, the callback itself doesn't have to reset the flag.
Diffstat (limited to 'src')
-rw-r--r-- | src/screen_artist.c | 1 | ||||
-rw-r--r-- | src/screen_file.c | 1 | ||||
-rw-r--r-- | src/screen_keydef.c | 1 | ||||
-rw-r--r-- | src/screen_play.c | 1 |
4 files changed, 0 insertions, 4 deletions
diff --git a/src/screen_artist.c b/src/screen_artist.c index f010a089d..eb7b2e5d4 100644 --- a/src/screen_artist.c +++ b/src/screen_artist.c @@ -72,7 +72,6 @@ artist_lw_callback(int index, int *highlight, void *data) static char buf[BUFSIZE]; char *str, *str_utf8; - *highlight = 0; if( (str_utf8=(char *) g_list_nth_data(metalist,index))==NULL ) return NULL; diff --git a/src/screen_file.c b/src/screen_file.c index 264045739..16f935242 100644 --- a/src/screen_file.c +++ b/src/screen_file.c @@ -156,7 +156,6 @@ browse_lw_callback(unsigned idx, int *highlight, void *data) filelist_entry_t *entry; mpd_InfoEntity *entity; - *highlight = 0; if( (entry=(filelist_entry_t *)g_list_nth_data(fl->list,idx))==NULL ) return NULL; diff --git a/src/screen_keydef.c b/src/screen_keydef.c index 397933a14..9d573976a 100644 --- a/src/screen_keydef.c +++ b/src/screen_keydef.c @@ -188,7 +188,6 @@ list_callback(unsigned idx, int *highlight, mpd_unused void *data) { static char buf[BUFSIZE]; - *highlight = 0; if (subcmd < 0) { if (idx < (unsigned)command_list_length) { if (cmds[idx].flags & COMMAND_KEY_CONFLICT) diff --git a/src/screen_play.c b/src/screen_play.c index 0426176d6..c59c766cd 100644 --- a/src/screen_play.c +++ b/src/screen_play.c @@ -80,7 +80,6 @@ list_callback(unsigned idx, int *highlight, void *data) mpdclient_t *c = (mpdclient_t *) data; mpd_Song *song; - *highlight = 0; if( (song=playlist_get_song(c, idx)) == NULL ) { return NULL; } |