diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-02 19:41:20 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-02 19:41:20 +0000 |
commit | 7b69b8b372f7179c3e9e45e3119b1705eac1ffc1 (patch) | |
tree | 3bad8317c367e5ed0ef9cd14c536f929d661233f /src/gui | |
parent | 6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9 (diff) | |
download | ktechlab-7b69b8b372f7179c3e9e45e3119b1705eac1ffc1.tar.gz ktechlab-7b69b8b372f7179c3e9e45e3119b1705eac1ffc1.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
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/orientationwidget.cpp | 2 |
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); } } |