]> Devoid-pointer.net GitWeb - anyanka.git/commitdiff
- Remove debugging messages 0.2e
authorMichal Malý <madcatxster@prifuk.cz>
Sat, 15 Mar 2014 18:45:15 +0000 (19:45 +0100)
committerMichal Malý <madcatxster@prifuk.cz>
Sat, 15 Mar 2014 18:45:15 +0000 (19:45 +0100)
- Version bump

datafileexporter.cpp
globalinfo.cpp
imagedrawer.cpp

index 823b4b615e7a5fab786e047e110d619a6d9e2858..54513f5313710bde99d7cda3c5e44144a62f2b2e 100644 (file)
@@ -171,11 +171,8 @@ void DataFileExporter::guessFormatFromSuffix(const QString& name)
   for (size_t i = 0; i < SUPPORTED_FORMATS.size(); i++) {
     const OutputFormat& of = SUPPORTED_FORMATS.at(i);
     if (suffix.compare(of.second) == 0) {
-      qDebug() << "Changing format to idx" << i;
       emit formatChanged(i);
       return;
     }
   }
-
-  qDebug() << "Cannot guess type from suffix";
 }
index c1ca9e1cd52f4d22009aee5e4abbecb4915fa391..098e710263cb410039872e25e52db20377da104c 100644 (file)
@@ -25,4 +25,4 @@
 
 const int GlobalInfo::APP_VERSION_MAJ(0);
 const int GlobalInfo::APP_VERSION_MIN(2);
-const QString GlobalInfo::APP_VERSION_REV("d");
+const QString GlobalInfo::APP_VERSION_REV("e");
index e751a5fcb4d056c35ea4c86254493c1fe19753ad..c3af9dc32e62dcb477c544a928938b1d8a777e8c 100644 (file)
@@ -101,12 +101,9 @@ int ImageDrawer::guessFormatFromSuffix(const QString& name)
 
   for (int i = 0; i < formats.size(); i++) {
     const QString f = QString(formats.at(i));
-    if (suffix.compare(f) == 0) {
-      qDebug() << "Changing format to idx" << i << ", type" << f;
+    if (suffix.compare(f) == 0)
       return i;
-    }
   }
 
-  qDebug() << "Cannot guess type from suffix";
   return -1;
 }