diff options
author | Darrell Anderson <[email protected]> | 2012-10-21 13:48:18 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2012-10-21 13:48:18 -0500 |
commit | 1f04c371bc2093e7b9122d7db9ab1ccd346b71a6 (patch) | |
tree | 4ef692e2d040deed4a2f3d8e4f4c2dd239fc7741 | |
parent | 40b8d89b213026ca4e7d9497dc9077edc79ee9dc (diff) | |
download | ksystemlog-1f04c371bc2093e7b9122d7db9ab1ccd346b71a6.tar.gz ksystemlog-1f04c371bc2093e7b9122d7db9ab1ccd346b71a6.zip |
Remove unnecessary language.
-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 |