|
|
|
@ -42,7 +42,7 @@
|
|
|
|
|
#include "processingdialog.h"
|
|
|
|
|
|
|
|
|
|
ProcessingDialogHeader::ProcessingDialogHeader(TQWidget* parent)
|
|
|
|
|
: TQWidget( parent, "", Qt::WDestructiveClose )
|
|
|
|
|
: TQWidget( parent, "", TQt::WDestructiveClose )
|
|
|
|
|
{
|
|
|
|
|
TQVBoxLayout* vbox = new TQVBoxLayout( this );
|
|
|
|
|
|
|
|
|
@ -60,7 +60,7 @@ ProcessingDialogHeader::ProcessingDialogHeader(TQWidget* parent)
|
|
|
|
|
|
|
|
|
|
TQWidget* swidget = new TQWidget( frame );
|
|
|
|
|
swidget->resize(2, frame->sizeHint().width());
|
|
|
|
|
swidget->setBackgroundColor(Qt::black);
|
|
|
|
|
swidget->setBackgroundColor(TQt::black);
|
|
|
|
|
seperatorbox->addWidget( swidget, AlignCenter );
|
|
|
|
|
|
|
|
|
|
TQLabel* label = new TQLabel( i18n("LDAP/Kerberos Realm Configuration"), frame );
|
|
|
|
@ -80,7 +80,7 @@ ProcessingDialogHeader::~ProcessingDialogHeader()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ProcessingDialog::ProcessingDialog(TQWidget* parent)
|
|
|
|
|
: TQWidget( parent, "systemmodaldialogclass", Qt::WType_Dialog | Qt::WDestructiveClose ), m_keepOnTopTimer(NULL), m_allowClose(false)
|
|
|
|
|
: TQWidget( parent, "systemmodaldialogclass", TQt::WType_Dialog | TQt::WDestructiveClose ), m_keepOnTopTimer(NULL), m_allowClose(false)
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
// Signal that we do not want any window controls to be shown at all
|
|
|
|
|