diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2012-05-02 17:33:12 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2012-05-02 17:33:32 +0200 |
commit | 22e725f545548e6b9583644987e82cb1e3b7ae1f (patch) | |
tree | ea45e621f7349ceef9081ab163c11f79265b4d78 /src/ui_act.c | |
parent | 951d6206f2837d5985899c5b974690e0076b68c5 (diff) | |
download | pianobar-22e725f545548e6b9583644987e82cb1e3b7ae1f.tar.gz pianobar-22e725f545548e6b9583644987e82cb1e3b7ae1f.tar.bz2 pianobar-22e725f545548e6b9583644987e82cb1e3b7ae1f.zip |
Really delete seed suggestions
There does not seem to be an API call for that.
Diffstat (limited to 'src/ui_act.c')
-rw-r--r-- | src/ui_act.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui_act.c b/src/ui_act.c index 93ba623..0c9ed1b 100644 --- a/src/ui_act.c +++ b/src/ui_act.c @@ -101,7 +101,7 @@ BarUiActCallback(BarUiActAddMusic) { assert (selStation != NULL); reqData.musicId = BarUiSelectMusicId (app, selStation, - selSong, "Add artist or title to station: "); + "Add artist or title to station: "); if (reqData.musicId != NULL) { if (!BarTransformIfShared (app, selStation)) { return; @@ -149,7 +149,7 @@ BarUiActCallback(BarUiActCreateStation) { WaitressReturn_t wRet; PianoRequestDataCreateStation_t reqData; - reqData.id = BarUiSelectMusicId (app, NULL, NULL, + reqData.id = BarUiSelectMusicId (app, NULL, "Create station from artist or title: "); if (reqData.id != NULL) { reqData.type = "mi"; |