Commit cb1fdd42c31afdaf7eca78591f3ddfbcb921eb49
* FIX: Build with 3.2 again... Thanks Greg.
svn path=/trunk/kdeextragear-1/amarok/; revision=397450
| |   |
| 164 | 164 | int step = canvas()->width()/10; |
| 165 | 165 | int i; |
| 166 | 166 | QValueList<int> ret; |
| ret << (m_circleList->first()->y() - 100)*-1; |
| ret << (int)(m_circleList->first()->y() - 100)*-1; |
| 168 | 168 | for(i=1; i<9; i++) |
| 169 | 169 | ret << (getY(i*step) - 100)*-1; |
| ret << (m_circleList->last()->y() - 100)*-1; |
| kdDebug() << "sending " << ret << endl; |
| ret << (int)(m_circleList->last()->y() - 100)*-1; |
| // kdDebug() << "sending " << ret << endl; |
| 172 | 172 | return ret; |
| 173 | 173 | } |
| 174 | 174 | |