Code

screen: removed empty methods
authorMax Kellermann <max@duempel.org>
Wed, 17 Sep 2008 22:58:40 +0000 (00:58 +0200)
committerMax Kellermann <max@duempel.org>
Wed, 17 Sep 2008 22:58:40 +0000 (00:58 +0200)
Declaring empty methods is of no use.  If a method is empty, we should
set it to NULL in the screen_functions struct.

src/screen_artist.c
src/screen_clock.c
src/screen_file.c
src/screen_search.c

index fb10afc3ca4fe7b0fdbe7edbcc58f335be1ca683..0798210b5b3e6331bc909c543a95a53a03da0e9b 100644 (file)
@@ -228,11 +228,6 @@ resize(int cols, int rows)
        lw->rows = rows;
 }
 
-static void
-close(void)
-{
-}
-
 static void
 paint(mpd_unused screen_t *screen, mpd_unused mpdclient_t *c)
 {
@@ -461,7 +456,6 @@ const struct screen_functions screen_artist = {
        .init = init,
        .exit = quit,
        .open = open,
-       .close = close,
        .resize = resize,
        .paint = paint,
        .update = update,
index 11d2da1b2dbd15f168ea2a936a3604c50c633105..cba8acdb5fee767aaa622ddc3d13c846fbf46fe0 100644 (file)
@@ -128,26 +128,6 @@ clock_init(WINDOW *w, int cols, int rows)
        clock_resize(cols, rows);
 }
 
-static void
-clock_exit(void)
-{
-}
-
-static void
-clock_open(mpd_unused screen_t *screen, mpd_unused mpdclient_t *c)
-{
-       int j;
-
-       for (j = 0; j < 5; j++)
-               older[j] = newer[j] = next[j] = 0;
-
-}
-
-static void
-clock_close(void)
-{
-}
-
 static const char *
 clock_title(mpd_unused char *str, mpd_unused size_t size)
 {
@@ -234,22 +214,11 @@ clock_paint(screen_t *screen, mpdclient_t *c)
        clock_update(screen, c);
 }
 
-static int
-clock_cmd(mpd_unused screen_t *screen, mpd_unused mpdclient_t *c,
-         mpd_unused command_t cmd)
-{
-       return 0;
-}
-
 const struct screen_functions screen_clock = {
        .init = clock_init,
-       .exit = clock_exit,
-       .open = clock_open,
-       .close = clock_close,
        .resize = clock_resize,
        .paint = clock_paint,
        .update = clock_update,
-       .cmd = clock_cmd,
        .get_title = clock_title,
 };
 
index 7fd86f64519712d3b0da24c5074aaf3af674994d..7465ff1255703d3f47b0a7884579f09c99e0d713 100644 (file)
@@ -590,11 +590,6 @@ browse_open(mpd_unused screen_t *screen, mpd_unused mpdclient_t *c)
        }
 }
 
-static void
-browse_close(void)
-{
-}
-
 static const char *
 browse_title(char *str, size_t size)
 {
@@ -748,7 +743,6 @@ const struct screen_functions screen_browse = {
        .init = browse_init,
        .exit = browse_exit,
        .open = browse_open,
-       .close = browse_close,
        .resize = browse_resize,
        .paint = browse_paint,
        .update = browse_update,
index ce23b9098880613994f8fdfb76591c2578bb2606..d1b2b92d54eb6e9c36606d41629f90002359145b 100644 (file)
@@ -401,11 +401,6 @@ resize(int cols, int rows)
   lw->rows = rows;
 }
 
-static void
-close(void)
-{
-}
-
 static void 
 paint(mpd_unused screen_t *screen, mpdclient_t *c)
 {
@@ -536,7 +531,6 @@ const struct screen_functions screen_search = {
        .init = init,
        .exit = quit,
        .open = open,
-       .close = close,
        .resize = resize,
        .paint = paint,
        .update = update,