diff options
Diffstat (limited to 'korganizer/statusdialog.cpp')
-rw-r--r-- | korganizer/statusdialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/korganizer/statusdialog.cpp b/korganizer/statusdialog.cpp index 29eb04ef2..a90ab28d3 100644 --- a/korganizer/statusdialog.cpp +++ b/korganizer/statusdialog.cpp @@ -18,8 +18,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, permission is given to link this program - with any edition of Qt, and distribute the resulting executable, - without including the source code for Qt in the source distribution. + with any edition of TQt, and distribute the resulting executable, + without including the source code for TQt in the source distribution. */ #include <tqlabel.h> @@ -35,10 +35,10 @@ #include "statusdialog.h" #include "statusdialog.moc" -StatusDialog::StatusDialog(TQWidget* parent, const char* name) : - KDialog(parent,name,true) +StatusDialog::StatusDialog(TQWidget* tqparent, const char* name) : + KDialog(tqparent,name,true) { - setCaption(i18n("Set Your Status")); + setCaption(i18n("Set Your tqStatus")); TQBoxLayout *topLayout = new TQVBoxLayout( this ); topLayout->setSpacing( spacingHint() ); @@ -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() ) ; } |