[Kroupware] KMail Patch
Stephan Buys
s.buys at icon.co.za
Thu Apr 24 12:03:08 CEST 2003
Hi,
I kept on getting crashes in the KMail wizard and tracked the problem down to an
uninitialized variable. This patch below fixes it on my system: (mTransport)
BTW - is there a preferred way to send in patches?
Regards,
Stephan
--- kmgroupwarewizard.cpp 20 Feb 2003 11:02:19 -0000 1.1.2.16
+++ kmgroupwarewizard.cpp 24 Apr 2003 09:02:54 -0000
@@ -96,7 +96,7 @@ KMIdentity & WizardIdentityPage::identit
}
WizardKolabPage::WizardKolabPage( QWidget * parent, const char * name )
- : QWidget( parent, name ), mFolder(0), mAccount(0)
+ : QWidget( parent, name ), mFolder(0), mAccount(0), mTransport(0)
{
QGridLayout *grid = new QGridLayout( this, 7, 2, KDialog::marginHint(),
KDialog::spacingHint() );
More information about the Kroupware
mailing list