-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hi,
the invisible icon from the new extended icons is never used when the normal
icons already provide one. It should be the other way around, my attached
patch fixes this.
Bye,
Thomas
- --
There will be big changes for you but you will be happy.
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)
iD8DBQE92J3X+83LmoKU5MARAnseAJ9IITvQhMx0wfNy/J6peHAsQ6s9fQCdH5pD
/iifOYCrtLQC8g0OQnvchXY=
=FZwO
-----END PGP SIGNATURE-----
Index: licq/plugins/qt-gui/src/userbox.cpp
===================================================================
RCS file: /cvsroot/licq/qt-gui/src/userbox.cpp,v
retrieving revision 1.134
diff -u -3 -p -r1.134 userbox.cpp
--- licq/plugins/qt-gui/src/userbox.cpp 8 Nov 2002 00:59:12 -0000 1.134
+++ licq/plugins/qt-gui/src/userbox.cpp 18 Nov 2002 07:57:56 -0000
@@ -492,16 +492,16 @@ void CUserViewItem::paintCell( QPainter
}
if (width - w > 8 && m_bStatusInvisible)
{
- if (gMainWindow->pmPrivate.isNull())
- {
- p->drawPixmap(w, 0, gMainWindow->pmInvisible);
- w += gMainWindow->pmInvisible.width() + 2;
- }
- else
- {
- p->drawPixmap(w, 0, gMainWindow->pmPrivate);
- w += gMainWindow->pmPrivate.width() + 2;
- }
+ if (gMainWindow->pmInvisible.isNull())
+ {
+ p->drawPixmap(w, 0, gMainWindow->pmPrivate);
+ w += gMainWindow->pmPrivate.width() + 2;
+ }
+ else
+ {
+ p->drawPixmap(w, 0, gMainWindow->pmInvisible);
+ w += gMainWindow->pmBirthday.width() + 2;
+ }
}
if (width - w > 8 && m_bSecure)
{