summaryrefslogtreecommitdiffstats
path: root/src/dpkg.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2022-05-18 15:41:08 +0900
committerMichele Calgaro <[email protected]>2022-05-18 15:41:08 +0900
commiteb5c989f90ef1f8faf29fb0b39e9c46257f56fc9 (patch)
treeab0ca327785f0d6034480535a5bb3a84ce609429 /src/dpkg.cpp
parent966cf44482c86484f80a24302a2781ab979750e1 (diff)
downloadtdeio-apt-eb5c989f90ef1f8faf29fb0b39e9c46257f56fc9.tar.gz
tdeio-apt-eb5c989f90ef1f8faf29fb0b39e9c46257f56fc9.zip
Use dedicated kdDebug area.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/dpkg.cpp')
-rw-r--r--src/dpkg.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/dpkg.cpp b/src/dpkg.cpp
index 7ab742f..7d9397b 100644
--- a/src/dpkg.cpp
+++ b/src/dpkg.cpp
@@ -11,7 +11,6 @@
#include <config.h>
#include "dpkg.h"
-#include "debug.h"
#include <tdelocale.h>
#include <kdebug.h>
@@ -82,7 +81,7 @@ void Dpkg::receiveSearch( const TQStringList & line )
// package1[, package2[, package3...]]: file
for (TQStringList::ConstIterator i = line.begin(); i != line.end(); ++i)
{
- //kdDebug(DEBUG_ZONE) << *i << endl;
+ //kdDebug(7130) << *i << endl;
if ((*i).isEmpty()) continue;
if (rx_notfound.exactMatch(*i))
{
@@ -93,7 +92,7 @@ void Dpkg::receiveSearch( const TQStringList & line )
int semicolon = (*i).find(':');
if (semicolon == -1)
{
- kdDebug(DEBUG_ZONE) << "receiveSearch unmatched line : " << *i << endl;
+ kdDebug(7130) << "receiveSearch unmatched line : " << *i << endl;
continue;
}
TQStringList packages = TQStringList::split(',', (*i).left(semicolon));