From 7682bc6ef9fac0fa4698a4d5ce9184b6e4d01f73 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Sat, 9 Feb 2013 12:27:48 +0100 Subject: [PATCH] Song: added h2song file extension to file import dialog After we added the HydrogenImport plugin we should also change the file import dialog such that the user can chose h2song files. --- src/core/song.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/core/song.cpp b/src/core/song.cpp index 58a1e31a7..d233e5946 100644 --- a/src/core/song.cpp +++ b/src/core/song.cpp @@ -1,7 +1,7 @@ /* * song.cpp - root of the model tree * - * Copyright (c) 2004-2012 Tobias Doerffel + * Copyright (c) 2004-2013 Tobias Doerffel * * This file is part of Linux MultiMedia Studio - http://lmms.sourceforge.net * @@ -1096,8 +1096,9 @@ void song::importProject() tr("MIDI sequences") + " (*.mid *.midi *.rmi);;" + tr("FL Studio projects") + - " (*.flp" - ");;" + + " (*.flp);;" + + tr("Hydrogen projects") + + " (*.h2song);;" + tr("All file types") + " (*.*)");