summaryrefslogtreecommitdiffstats
path: root/kbarcode/gnubarcode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbarcode/gnubarcode.cpp')
-rw-r--r--kbarcode/gnubarcode.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/kbarcode/gnubarcode.cpp b/kbarcode/gnubarcode.cpp
index d009802..cd03e5d 100644
--- a/kbarcode/gnubarcode.cpp
+++ b/kbarcode/gnubarcode.cpp
@@ -59,7 +59,7 @@ void GnuBarcode::update( const TQPaintDevice* device )
if( m_item )
{
- qDebug("Deleting");
+ tqDebug("Deleting");
Barcode_Delete( m_item );
m_item = NULL;
}
@@ -173,7 +173,7 @@ int GnuBarcode::drawBars( TQPainter* painter, int x, int y )
int current = 0;
unsigned int i = 0;
- qDebug("Partial=%s\n", m_item->partial );
+ tqDebug("Partial=%s\n", m_item->partial );
for( i = 0; i < strlen(m_item->partial); i++)
{
current = (int)m_item->partial[i] - ASCII_ZERO;
@@ -191,7 +191,7 @@ int GnuBarcode::drawBars( TQPainter* painter, int x, int y )
if( current < 0 )
{
- qDebug("current < 0: %i", current );
+ tqDebug("current < 0: %i", current );
current = 0;
break;
}
@@ -259,7 +259,7 @@ int GnuBarcode::drawBars( TQPainter* painter, int x, int y )
{
painter->fillRect( x + x0, y0, j, yr, barkode->foreground() );
}
- //qDebug("Bar = %i", j );
+ //tqDebug("Bar = %i", j );
}
xpos += j;
}