Version: (using KDE Devel) Installed from: Compiled sources See subject Probably has something to do with our custom strategies.
CVS commit by ogoffart: fix Bug 102288: When you change the system font sizes in kcontrol, Kopete contact list does not pick them up until restart BUG: 102288 M +2 -0 kopetegroupviewitem.cpp 1.38 M +3 -1 kopetemetacontactlvi.cpp 1.117 --- kdenetwork/kopete/kopete/contactlist/kopetegroupviewitem.cpp #1.37:1.38 @@ -22,4 +22,5 @@ #include <kiconloader.h> #include <kdebug.h> +#include <kapplication.h> #include "kopetecontactlistview.h" @@ -107,4 +108,5 @@ void KopeteGroupViewItem::initLVI() connect( KopetePrefs::prefs(), SIGNAL( contactListAppearanceChanged() ), SLOT( slotConfigChanged() ) ); + connect( kapp, SIGNAL( appearanceChanged() ), SLOT( slotConfigChanged() ) ); connect( m_group, SIGNAL( iconAppearanceChanged() ), SLOT( updateIcon() ) ); --- kdenetwork/kopete/kopete/contactlist/kopetemetacontactlvi.cpp #1.116:1.117 @@ -19,5 +19,4 @@ */ -#include <qapplication.h> #include <qpainter.h> #include <qtimer.h> @@ -37,4 +36,5 @@ #include <kglobal.h> #include <kconfig.h> +#include <kapplication.h> #include <kabc/addressbook.h> @@ -276,4 +276,6 @@ void KopeteMetaContactLVI::initLVI() SLOT( slotConfigChanged() ) ); + connect( kapp, SIGNAL( appearanceChanged() ), SLOT( slotConfigChanged() ) ); + mBlinkTimer = new QTimer( this, "mBlinkTimer" ); connect( mBlinkTimer, SIGNAL( timeout() ), SLOT( slotBlink() ) );
You need to log in before you can comment on or make changes to this bug.