OTHER: Replaced code for current_id handling

Now the current_id changed broadcast is handled in xclientcache, the now
unused code from XMMSHandler has been removed
This commit is contained in:
Thomas Frauendorfer 2008-07-12 06:12:20 +02:00
parent 058e2d0987
commit 20cfdad68d
11 changed files with 82 additions and 111 deletions

View file

@ -126,6 +126,8 @@ TextScroller::setText (QString text)
} else {
drawBitmapFont (text);
}
m_x_off = 0;
m_x2_off = 0;
update ();
}
@ -148,6 +150,7 @@ TextScroller::drawBitmapFont (QString text)
}
} else {
m_pixmap = QPixmap (m_w, m_h);
m_timer->stop ();
}
QByteArray temp2 = temp.toLatin1();
const char *t = temp2.data();
@ -201,6 +204,7 @@ TextScroller::drawQtFont (QString text)
} else {
m_pixmap = QPixmap (m_w, m_h);
m_timer->stop ();
}
QPainter paint;