diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:50:21 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-15 15:50:21 -0600 |
commit | 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 (patch) | |
tree | 89de88213bd261e4ccaade899ab2d6ec34b3a5a7 /korganizer/statusdialog.cpp | |
parent | 1dad5f662a09dfc5cc041caffe0f674044a4dcec (diff) | |
download | tdepim-3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.tar.gz tdepim-3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.zip |
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'korganizer/statusdialog.cpp')
-rw-r--r-- | korganizer/statusdialog.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/statusdialog.cpp b/korganizer/statusdialog.cpp index 15e15e5ab..1aea9e21a 100644 --- a/korganizer/statusdialog.cpp +++ b/korganizer/statusdialog.cpp @@ -24,7 +24,7 @@ #include <tqlabel.h> #include <tqstringlist.h> -#include <tqlayout.h> +#include <layout.h> #include <tqcombobox.h> #include <kdebug.h> @@ -49,9 +49,9 @@ StatusDialog::StatusDialog(TQWidget* parent, const char* name) : TQLabel *text = new TQLabel(i18n("Set your status"),this); statusLayout->addWidget( text ); - mtqStatus = new TQComboBox(false,this); - mtqStatus->insertStringList(Attendee::statusList()); - statusLayout->addWidget( mtqStatus ); + mStatus = new TQComboBox(false,this); + mStatus->insertStringList(Attendee::statusList()); + statusLayout->addWidget( mStatus ); TQBoxLayout *buttonLayout = new TQHBoxLayout( topLayout ); @@ -70,5 +70,5 @@ StatusDialog::~StatusDialog() Attendee::PartStat StatusDialog::status() { - return Attendee::PartStat( mtqStatus->currentItem() ) ; + return Attendee::PartStat( mStatus->currentItem() ) ; } |