Code

screen_queue: move playlist_save() to save_playlist.c
[ncmpc.git] / src / screen_lyrics.c
index b937e79bc3792ca16030d766178989d746faec9c..11786c1a9e778ee503983645e468a8b63760a4fd 100644 (file)
@@ -269,13 +269,13 @@ screen_lyrics_reload(void)
 }
 
 static void
-lyrics_screen_init(WINDOW *w, int cols, int rows)
+lyrics_screen_init(WINDOW *w, unsigned cols, unsigned rows)
 {
        screen_text_init(&text, w, cols, rows);
 }
 
 static void
-lyrics_resize(int cols, int rows)
+lyrics_resize(unsigned cols, unsigned rows)
 {
        screen_text_resize(&text, cols, rows);
 }
@@ -363,11 +363,9 @@ lyrics_edit(void)
        }
 
        if (options.text_editor_ask) {
-               char *buf = g_strdup_printf(
-                   _("Do you really want to start an editor and edit these lyrics [%s/%s]? "),
-                                           YES, NO);
-               bool really = screen_get_yesno(buf, false);
-               g_free(buf);
+               const char *prompt =
+                       _("Do you really want to start an editor and edit these lyrics?");
+               bool really = screen_get_yesno(prompt, false);
                if (!really) {
                        screen_status_message(_("Aborted"));
                        return;