diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:21:06 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:21:06 -0600 |
commit | 7d18baa666593a494ceea480732a8540ba471fe5 (patch) | |
tree | 1c656ba0da61a3bfcf4c4de730e66322865844fe /kchart/kdchart/KDFrame.cpp | |
parent | 951839808408bed4165fc025dbf00caf59ea319b (diff) | |
download | koffice-7d18baa666593a494ceea480732a8540ba471fe5.tar.gz koffice-7d18baa666593a494ceea480732a8540ba471fe5.zip |
Rename additional global TQt functions
Diffstat (limited to 'kchart/kdchart/KDFrame.cpp')
-rw-r--r-- | kchart/kdchart/KDFrame.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kchart/kdchart/KDFrame.cpp b/kchart/kdchart/KDFrame.cpp index 3904bf16..7a21930c 100644 --- a/kchart/kdchart/KDFrame.cpp +++ b/kchart/kdchart/KDFrame.cpp @@ -127,9 +127,9 @@ void KDFrame::paintEdges( TQPainter& painter, const TQRect& innerRect ) const TQPen thePen; thePen = section->pen(); int penWidth = TQMAX(thePen.width(), 1) * TQMAX(section->width(), 1); -//qDebug("paintEdges: thePen.width() = %i", thePen.width()); -//qDebug("paintEdges: section->width() = %i", section->width()); -//qDebug("paintEdges: penWidth = %i", penWidth); +//tqDebug("paintEdges: thePen.width() = %i", thePen.width()); +//tqDebug("paintEdges: section->width() = %i", section->width()); +//tqDebug("paintEdges: penWidth = %i", penWidth); thePen.setWidth( penWidth ); painter.setPen( thePen ); painter.setBrush( TQt::NoBrush ); @@ -262,13 +262,13 @@ void KDFrame::setSimpleFrame( SimpleFrame frame, _backPixmap = backPixmap ? *backPixmap : TQPixmap(); _backPixmapMode = backPixmapMode; if( FrameFlat == frame ) { - //qDebug("_profileSections.count() before = %i", _profileSections.count()); + //tqDebug("_profileSections.count() before = %i", _profileSections.count()); KDFrameProfileSection* newsection = new KDFrameProfileSection( KDFrameProfileSection::DirPlain, KDFrameProfileSection::CvtPlain, lineWidth, pen ); _profileSections.append( newsection ); - //qDebug( "_profileSections.count() after = %i, lineWidth = %i", + //tqDebug( "_profileSections.count() after = %i, lineWidth = %i", // _profileSections.count(), // lineWidth ); _topProfile.append( newsection ); @@ -526,7 +526,7 @@ bool KDFrame::readFrameNode( const TQDomElement& element, KDFrame& frame ) ok = ok & KDFrameCorner::readFrameCornerNode( element, tempCornerBR ); } else { - qDebug( "Unknown tag in frame" ); + tqDebug( "Unknown tag in frame" ); } } node = node.nextSibling(); @@ -567,7 +567,7 @@ bool KDFrame::readFrameProfileNode( const TQDomElement& element, section ); profile.append( section ); } else { - qDebug( "Unknown tag in double map" ); + tqDebug( "Unknown tag in double map" ); return false; } } @@ -600,7 +600,7 @@ bool KDFrame::KDFrameCorner::readFrameCornerNode( const TQDomElement& element, KDFrameProfile profile; ok = ok & readFrameProfileNode( element, profile ); } else { - qDebug( "Unknown tag in frame" ); + tqDebug( "Unknown tag in frame" ); } } node = node.nextSibling(); |