~ubuntu-branches/ubuntu/utopic/dvdstyler/utopic-proposed

« back to all changes in this revision

Viewing changes to src/dvdstyler.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-03-22 10:17:38 UTC
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20100322101738-221vbm516ygfnmfj
Tags: upstream-1.8.0.2
ImportĀ upstreamĀ versionĀ 1.8.0.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
// Purpose:     DVD Authoring Application
4
4
// Author:      Alex Thuering
5
5
// Created:     10.10.2003
6
 
// RCS-ID:      $Id: dvdstyler.cpp,v 1.41 2010/01/16 13:29:09 ntalex Exp $
 
6
// RCS-ID:      $Id: dvdstyler.cpp,v 1.42 2010/02/22 22:47:18 ntalex Exp $
7
7
// Copyright:   (c) Alex Thuering
8
8
// Licence:     GPL
9
9
/////////////////////////////////////////////////////////////////////////////
117
117
        
118
118
        // parse command line
119
119
        static const wxCmdLineEntryDesc cmdLineDesc[] = {
120
 
                { wxCMD_LINE_SWITCH, wxT("s"), wxT("start"), _("automatically starts the generation and burning") },
121
 
                { wxCMD_LINE_SWITCH, wxT("e"), wxT("stderr"), _("write log messages to standard error") },
122
 
                { wxCMD_LINE_SWITCH, wxT("v"), wxT("version"), _("show version of program") },
123
 
                { wxCMD_LINE_SWITCH, wxT("h"), wxT("help"), _("show summary of options") },
 
120
                { wxCMD_LINE_SWITCH, wxString(wxT("s")), wxString(wxT("start")), _("automatically starts the generation and burning") },
 
121
                { wxCMD_LINE_SWITCH, wxString(wxT("e")), wxString(wxT("stderr")), _("write log messages to standard error") },
 
122
                { wxCMD_LINE_SWITCH, wxString(wxT("v")), wxString(wxT("version")), _("show version of program") },
 
123
                { wxCMD_LINE_SWITCH, wxString(wxT("h")), wxString(wxT("help")), _("show summary of options") },
124
124
                { wxCMD_LINE_PARAM, NULL, NULL, _("input file"), wxCMD_LINE_VAL_STRING,
125
125
                                wxCMD_LINE_PARAM_OPTIONAL | wxCMD_LINE_PARAM_MULTIPLE },
126
126
                { wxCMD_LINE_NONE }