revert 1062035 -- wrong commit in wrong tree.

svn path=/trunk/extragear/sysadmin/partitionmanager/; revision=1062037
This commit is contained in:
Volker Lanz 2009-12-13 16:05:45 +00:00
parent 7ab322b49c
commit 7a014a5bba
1 changed files with 3 additions and 1 deletions

View File

@ -33,6 +33,7 @@
#include <kglobal.h>
#include <kglobalsettings.h>
#include <klocale.h>
#include <kdebug.h>
/** Creates a new InfoPane instance
@param parent the parent widget
@ -47,7 +48,8 @@ InfoPane::InfoPane(QWidget* parent) :
void InfoPane::clear()
{
parentWidget()->setWindowTitle(i18nc("@title:window", "Information"));
qDeleteAll(findChildren<QWidget*>());
qDeleteAll(findChildren<QLabel*>());
qDeleteAll(findChildren<QFrame*>());
}
int InfoPane::createHeader(const QString& title)