From 1b4a04d32d8bc68b6c87da69fb8ceb2384fc7658 Mon Sep 17 00:00:00 2001 From: Thomas McGuire Date: Sun, 22 Mar 2009 16:00:15 +0000 Subject: [PATCH] Use a popup instead, so it doesn't appear in the taskbar. svn path=/trunk/KDE/kdepim/; revision=942819 --- accountwizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accountwizard.cpp b/accountwizard.cpp index 5f2fe4f07..43bcb7cd3 100644 --- a/accountwizard.cpp +++ b/accountwizard.cpp @@ -420,7 +420,7 @@ QString AccountWizard::accountName() const QLabel *AccountWizard::createInfoLabel( const QString &msg ) { - QLabel *label = new QLabel( msg, this, Qt::Window | Qt::FramelessWindowHint ); + QLabel *label = new QLabel( msg, this, Qt::Popup ); label->setFrameStyle( QFrame::Panel | QFrame::Raised ); label->setLineWidth( 3 ); label->resize( fontMetrics().width( msg ) + 20, label->height() * 2 );