From 143635a09a5bfcbb27a111abd7d230feb8648666 Mon Sep 17 00:00:00 2001 From: Laurent Montel Date: Fri, 22 Jun 2007 12:19:17 +0000 Subject: [PATCH] wordwrap text. Bug found when I made test to connect to kolab server (kolab wizard allows to configure it (but crash when we close it), we can see list of folder, but there is against some bug to allows to see mail from kolab) svn path=/trunk/KDE/kdepim/; revision=678856 --- kmfoldercachedimap.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kmfoldercachedimap.cpp b/kmfoldercachedimap.cpp index 0ef8465e3..54c500350 100644 --- a/kmfoldercachedimap.cpp +++ b/kmfoldercachedimap.cpp @@ -136,7 +136,9 @@ DImapTroubleShootDialog::DImapTroubleShootDialog( QWidget *parent ) "you can try refreshing the IMAP cache. If you do this, " "you will loose all your local changes for this folder " "and all its subfolders.

" ); - topLayout->addWidget( new QLabel( txt, page ) ); + QLabel *label = new QLabel(txt, page ); + label->setWordWrap(true); + topLayout->addWidget( label ); showButtonSeparator( true ); QButtonGroup *group = new QButtonGroup( 0 );