Skip to content

Commit

Permalink
remove lilypond export from the ui, still possible on the command line
Browse files Browse the repository at this point in the history
  • Loading branch information
lasconic committed Feb 9, 2013
1 parent c608cf1 commit 932f2e0
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions mscore/file.cpp
Expand Up @@ -1507,8 +1507,6 @@ bool MuseScore::exportFile()
fl.append(tr("PostScript File (*.ps)"));
fl.append(tr("PNG Bitmap Graphic (*.png)"));
fl.append(tr("Scalable Vector Graphic (*.svg)"));
if(enableExperimental)
fl.append(tr("LilyPond Format (*.ly)"));
#ifdef HAS_AUDIOFILE
fl.append(tr("Wave Audio (*.wav)"));
fl.append(tr("Flac Audio (*.flac)"));
Expand Down Expand Up @@ -1546,11 +1544,11 @@ bool MuseScore::exportFile()
int idx = fl.indexOf(selectedFilter);
if (idx != -1) {
static const char* extensions[] = {
"mscx", "xml", "mxl", "mid", "pdf", "ps", "png", "svg", "ly",
"mscx", "xml", "mxl", "mid", "pdf", "ps", "png", "svg",
#ifdef HAS_AUDIOFILE
"wav", "flac", "ogg",
#endif
"mp3", "pos"
"mp3"
};
ext = extensions[idx];
}
Expand Down Expand Up @@ -1581,8 +1579,6 @@ bool MuseScore::exportParts()
fl.append(tr("PostScript File (*.ps)"));
fl.append(tr("PNG Bitmap Graphic (*.png)"));
fl.append(tr("Scalable Vector Graphic (*.svg)"));
if(enableExperimental)
fl.append(tr("LilyPond Format (*.ly)"));
#ifdef HAS_AUDIOFILE
fl.append(tr("Wave Audio (*.wav)"));
fl.append(tr("Flac Audio (*.flac)"));
Expand Down Expand Up @@ -1626,7 +1622,7 @@ bool MuseScore::exportParts()
int idx = fl.indexOf(selectedFilter);
if (idx != -1) {
static const char* extensions[] = {
"mscx", "xml", "mxl", "mid", "pdf", "ps", "png", "svg", "ly",
"mscx", "xml", "mxl", "mid", "pdf", "ps", "png", "svg",
#ifdef HAS_AUDIOFILE
"wav", "flac", "ogg",
#endif
Expand Down

0 comments on commit 932f2e0

Please sign in to comment.