Commit cb1fdd42c31afdaf7eca78591f3ddfbcb921eb49

* FIX: Build with 3.2 again... Thanks Greg.

svn path=/trunk/kdeextragear-1/amarok/; revision=397450
  
164164 int step = canvas()->width()/10;
165165 int i;
166166 QValueList<int> ret;
167 ret << (m_circleList->first()->y() - 100)*-1;
167 ret << (int)(m_circleList->first()->y() - 100)*-1;
168168 for(i=1; i<9; i++)
169169 ret << (getY(i*step) - 100)*-1;
170 ret << (m_circleList->last()->y() - 100)*-1;
171 kdDebug() << "sending " << ret << endl;
170 ret << (int)(m_circleList->last()->y() - 100)*-1;
171// kdDebug() << "sending " << ret << endl;
172172 return ret;
173173}
174174