# HG changeset patch # User mf0102 <0102@gmx.at> # Date 1205690577 -3600 # Node ID 8071e599916d016c2d7332474fb556eda335e05b # Parent 225d1144118605cadce491c270eabb0f4715fde9 renamed BmpCmdLineOpt to AudCmdLineOpt (greatest commit EVAR! ;-) diff -r 225d11441186 -r 8071e599916d src/audacious/main.c --- a/src/audacious/main.c Sat Mar 15 19:40:36 2008 +0200 +++ b/src/audacious/main.c Sun Mar 16 19:02:57 2008 +0100 @@ -94,7 +94,7 @@ gboolean has_x11_connection = FALSE; /* do we have an X11 connection? */ const gchar *application_name = N_("Audacious"); -struct _BmpCmdLineOpt { +struct _AudCmdLineOpt { gchar **filenames; gint session; gboolean play, stop, pause, fwd, rew, play_pause, show_jump_box; @@ -108,9 +108,9 @@ gboolean macpack; }; -typedef struct _BmpCmdLineOpt BmpCmdLineOpt; +typedef struct _AudCmdLineOpt AudCmdLineOpt; -BmpCmdLineOpt options; +AudCmdLineOpt options; BmpConfig cfg; @@ -1092,7 +1092,7 @@ } static void -handle_cmd_line_options(BmpCmdLineOpt * options, +handle_cmd_line_options(AudCmdLineOpt * options, gboolean remote) { gchar **filenames = options->filenames; @@ -1400,7 +1400,7 @@ gtk_init_check_ok = gtk_init_check(&argc, &argv); - memset(&options, '\0', sizeof(BmpCmdLineOpt)); + memset(&options, '\0', sizeof(AudCmdLineOpt)); options.session = -1; context = g_option_context_new(_("- play multimedia files"));