diff options
-rw-r--r-- | ksystemlog/src/logManager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ksystemlog/src/logManager.cpp b/ksystemlog/src/logManager.cpp index c0de9e9..e28e358 100644 --- a/ksystemlog/src/logManager.cpp +++ b/ksystemlog/src/logManager.cpp @@ -534,13 +534,13 @@ void LogManager::slotCopyToClipboard() { void LogManager::synchronize(LogLineList* buffer) { kdDebug() << "Synchronizing the buffer..." << endl; - //Here to find a fucking bug + //Here to find a bug if (buffer==NULL) kdDebug() << "ERROR! Buffer NULL" << endl; else kdDebug() << "Buffer not NULL" << endl; - //Here to find a fucking bug + //Here to find a bug if (view==NULL) kdDebug() << "ERROR! View NULL" << endl; else @@ -549,13 +549,13 @@ void LogManager::synchronize(LogLineList* buffer) { //Synchronize the buffer returned by the reader and get the last added line LogLine* line=buffer->synchronize(view); - //Here to find a fucking bug + //Here to find a bug if (line==NULL) kdDebug() << "ERROR! Line NULL" << endl; else kdDebug() << "Line not NULL" << endl; - //Here to find a fucking bug + //Here to find a bug if (view->getLogList()==NULL) kdDebug() << "ERROR! KListView NULL" << endl; else |