clened unneeded comments
authorVille Tiensuu <ville.tiensuu@ixonos.com>
Thu, 10 Jun 2010 09:00:58 +0000 (12:00 +0300)
committerVille Tiensuu <ville.tiensuu@ixonos.com>
Thu, 10 Jun 2010 09:00:58 +0000 (12:00 +0300)
src/engine/engine.cpp
src/situareservice/situareservice.cpp

index 1fa8c94..e6223bb 100644 (file)
@@ -202,8 +202,7 @@ void SituareEngine::enableAutomaticLocationUpdate(bool enabled, int updateInterv
 
 void SituareEngine::error(const QString &error)
 {
-    qDebug() << __PRETTY_FUNCTION__;
-    qDebug() << "ERROR MESSAGE: " << error;
+    qDebug() << __PRETTY_FUNCTION__;    
 
     m_ui->buildInformationBox(error, true);
 
index cdd921f..3a0c225 100644 (file)
@@ -249,8 +249,7 @@ void SituareService::requestFinished(QNetworkReply *reply)
         qDebug() << "BytesAvailable: " << reply->bytesAvailable();
 
         if (reply->error()) {
-            emit error(reply->errorString());            
-            qDebug() << "TMP MESSAGE VILLE";
+            emit error(reply->errorString());
         } else {
             qint64 max = reply->size();
             QByteArray replyArray = reply->read(max);