summaryrefslogtreecommitdiffstats
path: root/korganizer/statusdialog.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:50 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-16 09:59:50 -0600
commit9cc13dcbb01a96c9e60a07ca63c61d24b374f50d (patch)
treeab537a329b9613e11dce8195761f93ffe82aed24 /korganizer/statusdialog.cpp
parent3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12 (diff)
downloadtdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.tar.gz
tdepim-9cc13dcbb01a96c9e60a07ca63c61d24b374f50d.zip
Revert "Rename a number of old tq methods that are no longer tq specific"
This reverts commit 3ca10fd9a2dc631429d3b5d5c5e42a7d211d5a12.
Diffstat (limited to 'korganizer/statusdialog.cpp')
-rw-r--r--korganizer/statusdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/korganizer/statusdialog.cpp b/korganizer/statusdialog.cpp
index 1aea9e21..15e15e5a 100644
--- a/korganizer/statusdialog.cpp
+++ b/korganizer/statusdialog.cpp
@@ -24,7 +24,7 @@
#include <tqlabel.h>
#include <tqstringlist.h>
-#include <layout.h>
+#include <tqlayout.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 );
- mStatus = new TQComboBox(false,this);
- mStatus->insertStringList(Attendee::statusList());
- statusLayout->addWidget( mStatus );
+ mtqStatus = new TQComboBox(false,this);
+ mtqStatus->insertStringList(Attendee::statusList());
+ statusLayout->addWidget( mtqStatus );
TQBoxLayout *buttonLayout = new TQHBoxLayout( topLayout );
@@ -70,5 +70,5 @@ StatusDialog::~StatusDialog()
Attendee::PartStat StatusDialog::status()
{
- return Attendee::PartStat( mStatus->currentItem() ) ;
+ return Attendee::PartStat( mtqStatus->currentItem() ) ;
}