gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] storm/kde/kmd kmd.cpp


From: Benja Fallenstein
Subject: [Gzz-commits] storm/kde/kmd kmd.cpp
Date: Wed, 21 May 2003 15:56:49 -0400

CVSROOT:        /cvsroot/storm
Module name:    storm
Changes by:     Benja Fallenstein <address@hidden>      03/05/21 15:56:49

Modified files:
        kde/kmd        : kmd.cpp 

Log message:
        comment dbg msgs out

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/storm/storm/kde/kmd/kmd.cpp.diff?tr1=1.7&tr2=1.8&r1=text&r2=text

Patches:
Index: storm/kde/kmd/kmd.cpp
diff -u storm/kde/kmd/kmd.cpp:1.7 storm/kde/kmd/kmd.cpp:1.8
--- storm/kde/kmd/kmd.cpp:1.7   Wed May 21 15:55:31 2003
+++ storm/kde/kmd/kmd.cpp       Wed May 21 15:56:49 2003
@@ -52,7 +52,7 @@
 kio_kmdProtocol::kio_kmdProtocol(const QCString &pool_socket, const QCString 
&app_socket)
   : QObject(), SlaveBase("kio_kmd", pool_socket, app_socket)
 {
-  kdDebug() << "kio_kmdProtocol::kio_kmdProtocol()" << endl;
+  //kdDebug() << "kio_kmdProtocol::kio_kmdProtocol()" << endl;
 }
 /* 
----------------------------------------------------------------------------------
 */
 
@@ -67,32 +67,32 @@
 {
   isFinished = 0;
 
-  kdDebug() << "kio_urn::get(const KURL& url)" << endl ;
+  //kdDebug() << "kio_urn::get(const KURL& url)" << endl ;
 
-  kdDebug() << "myURL: " << url.prettyURL() << endl;
+  //kdDebug() << "myURL: " << url.prettyURL() << endl;
 
   if(url.prettyURL() == "kmd:wait") { mimeType("text/html"); finished(); 
return; }
 
   mimeType("text/html");
 
-  kdDebug() << "0" << endl;
+  //kdDebug() << "0" << endl;
   http = new QHttp();
   connect(http,  SIGNAL(stateChanged(int)),
          this, SLOT(slotStateChanged(int)));
-  kdDebug() << "1" << endl;
+  //kdDebug() << "1" << endl;
   connect(http,  SIGNAL(readyRead(const QHttpResponseHeader &)),
          this, SLOT(slotReadyRead()));
   connect(http,  SIGNAL(requestFinished(int, bool)),
          this, SLOT(slotRequestFinished(int)));
-  kdDebug() << "2" << endl;
+  //kdDebug() << "2" << endl;
   http->setHost("fishy.it.jyu.fi", 5555);
   requestNr = http->get(url.prettyURL());
-  kdDebug() << "request id: " << requestNr << endl;
+  //kdDebug() << "request id: " << requestNr << endl;
   while(!isFinished) {
-    //kdDebug() << "process events" << endl;
+    ////kdDebug() << "process events" << endl;
     app->processEvents();
   }
-  kdDebug() << "done" << endl;
+  //kdDebug() << "done" << endl;
   finished();
 }
 
@@ -106,12 +106,12 @@
 /* --------------------------------------------------------------------------- 
*/
 void kio_kmdProtocol::slotStateChanged(int state)
 {
-  kdDebug() << "kio_urn -> state " << state << endl;
+  //kdDebug() << "kio_urn -> state " << state << endl;
 }
 
 void kio_kmdProtocol::slotReadyRead()
 {
-  kdDebug() << "kio_urn -> data received" << endl;
+  //kdDebug() << "kio_urn -> data received" << endl;
   if(http->bytesAvailable() > 0)
     data(http->readAll());
 }
@@ -120,5 +120,5 @@
 {
   if(req == requestNr)
     isFinished = true;
-  kdDebug() << "kio_urn -> reqfinished " << req << endl;
+  //kdDebug() << "kio_urn -> reqfinished " << req << endl;
 }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]