[Kst] extragear/graphics/kst/kst

George Staikos staikos at kde.org
Sun Nov 6 18:40:24 CET 2005


SVN commit 478404 by staikos:

remove another kdebug.h


 M  +9 -9      kstdoc.cpp  


--- trunk/extragear/graphics/kst/kst/kstdoc.cpp #478403:478404
@@ -33,7 +33,7 @@
 
 // include files for KDE
 #include <dcopclient.h>
-#include <kdebug.h>
+#include "ksdebug.h"
 #include <kdeversion.h>
 #include <kfiledialog.h>
 #include <kmessagebox.h>
@@ -477,7 +477,7 @@
     KST::dataObjectList.lock().readUnlock();
     for (KstDataObjectList::Iterator i = dol.begin(); i != dol.end(); ++i) {
       assert(*i);
-      //kdDebug() << "Load inputs for " << (*i)->tagName() << " " << (void*)*i << endl;
+      //kstdDebug() << "Load inputs for " << (*i)->tagName() << " " << (void*)*i << endl;
       (*i)->KstRWLock::writeLock();
       bool rc = (*i)->loadInputs();
       (*i)->KstRWLock::writeUnlock();
@@ -891,9 +891,9 @@
     // ASSUMPTION: this only gets called from the data manager!
     KST::dataObjectList.lock().writeLock();
     for (KstDataObjectList::Iterator it = KST::dataObjectList.begin(); it != KST::dataObjectList.end(); ++it) {
-      //kdDebug() << "OBJECT: " << (*it)->tagName() << " USAGE: " << (*it)->getUsage() << endl;
+      //kstdDebug() << "OBJECT: " << (*it)->tagName() << " USAGE: " << (*it)->getUsage() << endl;
       if ((*it)->getUsage() == 0) {
-        //kdDebug() << "    -> REMOVED" << endl;
+        //kstdDebug() << "    -> REMOVED" << endl;
         KstDataObjectList::Iterator byebye = it;
         --it;
         KST::dataObjectList.remove(byebye);
@@ -911,9 +911,9 @@
     
     // clear unused vectors that are editable 
     for (KstVectorList::ConstIterator it = vectorList.begin(); it != vectorList.end(); ++it) {
-      //kdDebug() << "VECTOR: " << (*it)->tagName() << " USAGE: " << (*it)->getUsage() << endl;
+      //kstdDebug() << "VECTOR: " << (*it)->tagName() << " USAGE: " << (*it)->getUsage() << endl;
       if ((*it)->getUsage() == 1) {
-        //kdDebug() << "    -> REMOVED" << endl;
+        //kstdDebug() << "    -> REMOVED" << endl;
         KST::vectorList.lock().writeLock();
         KST::vectorList.remove(const_cast<KstVector*>((*it).data()));
         KST::vectorList.lock().writeUnlock();
@@ -931,7 +931,7 @@
     // clear unused matrices that are editable
     for (KstMatrixList::ConstIterator it = matrixList.begin(); it != matrixList.end(); ++it) {
       if ((*it)->getUsage() == 1) {
-        //kdDebug() << "    -> REMOVED" << endl;
+        //kstdDebug() << "    -> REMOVED" << endl;
         KST::matrixList.lock().writeLock();
         KST::matrixList.remove(const_cast<KstMatrix*>((*it).data()));
         KST::matrixList.lock().writeUnlock();
@@ -947,7 +947,7 @@
   KST::dataSourceList.lock().readLock();
   for (KstDataSourceList::ConstIterator it = KST::dataSourceList.begin(); it != KST::dataSourceList.end(); ++it) {
       if ((*it)->getUsage() == 1) {
-        //kdDebug() << "    -> REMOVED" << endl;
+        //kstdDebug() << "    -> REMOVED" << endl;
         dataList.append(const_cast<KstDataSource*>((*it).data()));
         modified = true;
       }
@@ -1023,7 +1023,7 @@
         }
         break;
       case ThreadEvent::UpdateAllDialogs:
-        //kdDebug() << "Update ALL dialogs" << endl;
+        //kstdDebug() << "Update ALL dialogs" << endl;
         {
           KMdiIterator<KMdiChildView*>* it = KstApp::inst()->createIterator();
           if (it) {


More information about the Kst mailing list