summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-02 19:41:20 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-02 19:41:20 +0000
commit7b69b8b372f7179c3e9e45e3119b1705eac1ffc1 (patch)
tree3bad8317c367e5ed0ef9cd14c536f929d661233f
parent6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9 (diff)
downloadktechlab-7b69b8b3.tar.gz
ktechlab-7b69b8b3.zip
Fix ktechlab FTBFS under gcc4.6
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1244429 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r--src/gui/orientationwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/orientationwidget.cpp b/src/gui/orientationwidget.cpp
index 49137c2..134a958 100644
--- a/src/gui/orientationwidget.cpp
+++ b/src/gui/orientationwidget.cpp
@@ -185,7 +185,7 @@ void OrientationWidget::slotClear()
for ( int col=0; col<4; ++col )
{
// Hmm...this line has crashed before
- m_toolBtn[row][col]->setPixmap( TQPixmap::TQPixmap() );
+ m_toolBtn[row][col]->setPixmap( TQPixmap() );
m_toolBtn[row][col]->setEnabled(false);
}
}