aboutsummaryrefslogtreecommitdiffstats
path: root/src/screen.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-03 14:28:49 +0200
committerMax Kellermann <max@duempel.org>2008-10-03 14:28:49 +0200
commit66f34ee6b418742d44f38ec3bdec5a8ea541bfcc (patch)
tree825976289312f2e716710d613ce1fd8bdc54367d /src/screen.h
parent0ae851aa39de5dfdf6b97c3e774aa322c820f410 (diff)
downloadmpd-66f34ee6b418742d44f38ec3bdec5a8ea541bfcc.tar.gz
mpd-66f34ee6b418742d44f38ec3bdec5a8ea541bfcc.tar.xz
mpd-66f34ee6b418742d44f38ec3bdec5a8ea541bfcc.zip
screen: removed "painted" flag
Repaint immediately instead of setting "painted=0".
Diffstat (limited to 'src/screen.h')
-rw-r--r--src/screen.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/screen.h b/src/screen.h
index 6d2645702..4ad376ba8 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -38,8 +38,6 @@ typedef struct screen {
char *findbuf;
GList *find_history;
-
- int painted;
} screen_t;
extern const struct screen_functions screen_playlist;
@@ -72,7 +70,7 @@ typedef struct screen_functions {
void screen_init(mpdclient_t *c);
void screen_exit(void);
-void screen_resize(void);
+void screen_resize(struct mpdclient *c);
void screen_status_message(const char *msg);
void screen_status_printf(const char *format, ...);
char *screen_error(void);