Mercurial > audlegacy
changeset 4350:8071e599916d
renamed BmpCmdLineOpt to AudCmdLineOpt (greatest commit EVAR! ;-)
author | mf0102 <0102@gmx.at> |
---|---|
date | Sun, 16 Mar 2008 19:02:57 +0100 |
parents | 225d11441186 |
children | fe9e9300150d |
files | src/audacious/main.c |
diffstat | 1 files changed, 5 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- 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"));