summaryrefslogtreecommitdiffstats
path: root/ksystemlog/src/logManager.cpp
diff options
context:
space:
mode:
authorDarrell Anderson <humanreadable@yahoo.com>2012-10-21 13:48:18 -0500
committerDarrell Anderson <humanreadable@yahoo.com>2012-10-21 13:48:18 -0500
commit1f04c371bc2093e7b9122d7db9ab1ccd346b71a6 (patch)
tree4ef692e2d040deed4a2f3d8e4f4c2dd239fc7741 /ksystemlog/src/logManager.cpp
parent40b8d89b213026ca4e7d9497dc9077edc79ee9dc (diff)
downloadksystemlog-1f04c371bc2093e7b9122d7db9ab1ccd346b71a6.tar.gz
ksystemlog-1f04c371bc2093e7b9122d7db9ab1ccd346b71a6.zip
Remove unnecessary language.
Diffstat (limited to 'ksystemlog/src/logManager.cpp')
-rw-r--r--ksystemlog/src/logManager.cpp8
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