diff options
Diffstat (limited to 'src/processingdialog.cpp')
-rw-r--r-- | src/processingdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/processingdialog.cpp b/src/processingdialog.cpp index c667ffa..191d678 100644 --- a/src/processingdialog.cpp +++ b/src/processingdialog.cpp @@ -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 |