From: Jean-Baptiste Mardelle Date: Tue, 2 Jun 2009 21:25:13 +0000 (+0000) Subject: Add correct ogg mime to the list of supported mimetypes: X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=abe22edbf95ee591e7a79250dd64a7578762e015;p=kdenlive Add correct ogg mime to the list of supported mimetypes: http://www.kdenlive.org/mantis/view.php?id=887 svn path=/trunk/kdenlive/; revision=3484 --- diff --git a/src/projectlist.cpp b/src/projectlist.cpp index 2fa8a85e..cd160664 100644 --- a/src/projectlist.cpp +++ b/src/projectlist.cpp @@ -584,7 +584,7 @@ void ProjectList::slotAddClip(const QList givenList, QString group) KUrl::List list; if (givenList.isEmpty()) { // Build list of mime types - QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "video/x-flv" << "application/vnd.rn-realmedia" << "video/x-dv" << "video/dv" << "video/x-msvideo" << "video/mpeg" << "video/x-ms-wmv" << "audio/mpeg" << "audio/x-mp3" << "audio/x-wav" << "application/ogg" << "video/mp4" << "video/quicktime" << "image/gif" << "image/jpeg" << "image/png" << "image/x-tga" << "image/x-bmp" << "image/svg+xml" << "image/tiff" << "image/x-xcf-gimp" << "image/x-vnd.adobe.photoshop" << "image/x-pcx" << "image/x-exr" << "video/mlt-playlist" << "audio/x-flac" << "audio/mp4" << "video/x-matroska" << "audio/x-matroska"; + QStringList mimeTypes = QStringList() << "application/x-kdenlive" << "video/x-flv" << "application/vnd.rn-realmedia" << "video/x-dv" << "video/dv" << "video/x-msvideo" << "video/mpeg" << "video/x-ms-wmv" << "audio/mpeg" << "audio/x-mp3" << "audio/x-wav" << "application/ogg" << "video/mp4" << "video/quicktime" << "image/gif" << "image/jpeg" << "image/png" << "image/x-tga" << "image/x-bmp" << "image/svg+xml" << "image/tiff" << "image/x-xcf-gimp" << "image/x-vnd.adobe.photoshop" << "image/x-pcx" << "image/x-exr" << "video/mlt-playlist" << "audio/x-flac" << "audio/mp4" << "video/x-matroska" << "audio/x-matroska" << "video/ogg" << "audio/ogg"; QString allExtensions; foreach(const QString& mimeType, mimeTypes) {