]> git.sur5r.net Git - minitube/blobdiff - src/videomimedata.cpp
Update upstream source from tag 'upstream/3.8'
[minitube] / src / videomimedata.cpp
index 38998f2169a5fe7fa74b9788296f1a5f7becad65..7e46d6540a070a6179b069b04575a0f5d65b3857 100644 (file)
@@ -1,13 +1,33 @@
+/* $BEGIN_LICENSE
+
+This file is part of Minitube.
+Copyright 2009, Flavio Tordini <flavio.tordini@gmail.com>
+
+Minitube is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
+
+Minitube is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+GNU General Public License for more details.
+
+You should have received a copy of the GNU General Public License
+along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
+
+$END_LICENSE */
+
 #include "videomimedata.h"
 
 VideoMimeData::VideoMimeData() {}
 
 QStringList VideoMimeData::formats() const {
-    QStringList formats( QMimeData::formats() );
+    QStringList formats(QMimeData::formats());
     formats.append("application/x-minitube-video");
     return formats;
 }
 
-bool VideoMimeData::hasFormat( const QString &mimeType ) const {
-    return mimeType == "application/x-minitube-video";
+bool VideoMimeData::hasFormat(const QString &mimeType) const {
+    return mimeType == QLatin1String("application/x-minitube-video");
 }