]> Git trees. - libqmvoc.git/commitdiff
Code adaptation because of changes on libraries related to revision 719630
authorRafael Fernández López <ereslibre@kde.org>
Mon, 1 Oct 2007 15:10:24 +0000 (15:10 +0000)
committerRafael Fernández López <ereslibre@kde.org>
Mon, 1 Oct 2007 15:10:24 +0000 (15:10 +0000)
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=719643

keduvocdocument/leitnersystemview.cpp

index 5b480429bee289411638c646ed83a251e78f600a..2dfd898d6c2aa1bff8cab027b54eafe1d0a586c3 100644 (file)
@@ -64,11 +64,11 @@ void LeitnerSystemView::LeitnerSystemViewPrivate::drawSystem( QPainter* p )
     //draw the boxes' icons
     for ( int i = 0; i < m_leitnerSystem->getNumberOfBoxes(); i++ ) {
         if ( i == m_highlightedBox ) {
-            //p->drawPixmap(12 + i * 64 + i*10, m_imageY, KGlobal::iconLoader()->loadIcon("leitnerbox", K3Icon::Panel));
+            //p->drawPixmap(12 + i * 64 + i*10, m_imageY, KGlobal::iconLoader()->loadIcon("leitnerbox", KIconLoader::Panel));
             p->drawRect( 12 + i * 64 + i*10, m_imageY,64,64 );
             p->fillRect( 12 + i * 64 + i*10, m_imageY,64,64, QBrush( Qt::red ) );
         } else { //for each box 74 = 64(pixmap) + 10(distance between two boxes)
-            //p->drawPixmap(12 + i * 74, m_imageY, KGlobal::iconLoader()->loadIcon("leitnerbox", K3Icon::Panel));
+            //p->drawPixmap(12 + i * 74, m_imageY, KGlobal::iconLoader()->loadIcon("leitnerbox", KIconLoader::Panel));
             p->drawRect( 12 + i * 64 + i*10, m_imageY,64,64 );
         }
     }