diff options
Diffstat (limited to 'plugins/kmail/bodypartformatter/delegateselector.cpp')
-rw-r--r-- | plugins/kmail/bodypartformatter/delegateselector.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/kmail/bodypartformatter/delegateselector.cpp b/plugins/kmail/bodypartformatter/delegateselector.cpp index 79d46a65b..0f20da93a 100644 --- a/plugins/kmail/bodypartformatter/delegateselector.cpp +++ b/plugins/kmail/bodypartformatter/delegateselector.cpp @@ -23,25 +23,25 @@ #include <klocale.h> -#include <qcheckbox.h> -#include <qhbox.h> -#include <qlabel.h> -#include <qvbox.h> +#include <tqcheckbox.h> +#include <tqhbox.h> +#include <tqlabel.h> +#include <tqvbox.h> -DelegateSelector::DelegateSelector(QWidget * parent) +DelegateSelector::DelegateSelector(TQWidget * parent) : KDialogBase( parent, 0, true, i18n("Select delegate"), Ok|Cancel, Ok, true ) { - QVBox *page = makeVBoxMainWidget(); + TQVBox *page = makeVBoxMainWidget(); - QHBox *delegateBox = new QHBox( page ); - new QLabel( i18n("Delegate:"), delegateBox ); + TQHBox *delegateBox = new TQHBox( page ); + new TQLabel( i18n("Delegate:"), delegateBox ); mDelegate = new KPIM::AddresseeLineEdit( delegateBox ); - mRsvp = new QCheckBox( i18n("Keep me informed about status changes of this incidence."), page ); + mRsvp = new TQCheckBox( i18n("Keep me informed about status changes of this incidence."), page ); mRsvp->setChecked( true ); } -QString DelegateSelector::delegate() const +TQString DelegateSelector::delegate() const { return mDelegate->text(); } |