diff options
Diffstat (limited to 'src/gui/dialogs/EventEditDialog.cpp')
-rw-r--r-- | src/gui/dialogs/EventEditDialog.cpp | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/gui/dialogs/EventEditDialog.cpp b/src/gui/dialogs/EventEditDialog.cpp index 0502fce..6bd4752 100644 --- a/src/gui/dialogs/EventEditDialog.cpp +++ b/src/gui/dialogs/EventEditDialog.cpp @@ -179,10 +179,10 @@ EventEditDialog::EventEditDialog(TQWidget *parent, for (Event::PropertyNames::iterator i = p.begin(); i != p.end(); ++i) { - new TQLabel(strtoqstr(*i), m_nonPersistentGrid, strtoqstr(*i)); - new TQLabel(strtoqstr(event.getPropertyTypeAsString(*i)), m_nonPersistentGrid, strtoqstr(*i)); - new TQLabel(strtoqstr(event.getAsString(*i)), m_nonPersistentGrid, strtoqstr(*i)); - TQPushButton *button = new TQPushButton("P", m_nonPersistentGrid, strtoqstr(*i)); + new TQLabel(strtoqstr(*i), m_nonPersistentGrid, strtoqstr(*i).ascii()); + new TQLabel(strtoqstr(event.getPropertyTypeAsString(*i)), m_nonPersistentGrid, strtoqstr(*i).ascii()); + new TQLabel(strtoqstr(event.getAsString(*i)), m_nonPersistentGrid, strtoqstr(*i).ascii()); + TQPushButton *button = new TQPushButton("P", m_nonPersistentGrid, strtoqstr(*i).ascii()); button->setFixedSize(TQSize(24, 24)); TQToolTip::add (button, i18n("Make persistent")); @@ -195,10 +195,10 @@ EventEditDialog::EventEditDialog(TQWidget *parent, void EventEditDialog::addPersistentProperty(const PropertyName &name) { - TQLabel *label = new TQLabel(strtoqstr(name), m_persistentGrid, strtoqstr(name)); + TQLabel *label = new TQLabel(strtoqstr(name), m_persistentGrid, strtoqstr(name).ascii()); label->show(); label = new TQLabel(strtoqstr(m_originalEvent.getPropertyTypeAsString(name)), - m_persistentGrid, strtoqstr(name)); + m_persistentGrid, strtoqstr(name).ascii()); label->show(); PropertyType type(m_originalEvent.getPropertyType(name)); @@ -213,7 +213,7 @@ EventEditDialog::addPersistentProperty(const PropertyName &name) max = 127; } TQSpinBox *spinBox = new TQSpinBox - (min, max, 1, m_persistentGrid, strtoqstr(name)); + (min, max, 1, m_persistentGrid, strtoqstr(name).ascii()); spinBox->setValue(m_originalEvent.get<Int>(name)); TQObject::connect(spinBox, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotIntPropertyChanged(int))); @@ -228,7 +228,7 @@ case UInt: { max = 65535; } TQSpinBox *spinBox = new TQSpinBox - (min, max, 1, m_persistentGrid, strtoqstr(name)); + (min, max, 1, m_persistentGrid, strtoqstr(name).ascii()); spinBox->setValue(m_originalEvent.get<UInt>(name)); TQObject::connect(spinBox, TQT_SIGNAL(valueChanged(int)), this, TQT_SLOT(slotIntPropertyChanged(int))); @@ -244,7 +244,7 @@ case UInt: { // TQSpinBox *spinBox = new TQSpinBox (INT_MIN, INT_MAX, 1, - hbox, strtoqstr(name) + "%sec"); + hbox, TQString(strtoqstr(name) + "%sec").ascii()); spinBox->setValue(realTime.sec); TQObject::connect(spinBox, TQT_SIGNAL(valueChanged(int)), @@ -254,7 +254,7 @@ case UInt: { // spinBox = new TQSpinBox (INT_MIN, INT_MAX, 1, - hbox, strtoqstr(name) + "%nsec"); + hbox, TQString(strtoqstr(name) + "%nsec").ascii()); spinBox->setValue(realTime.nsec); TQObject::connect(spinBox, TQT_SIGNAL(valueChanged(int)), @@ -265,7 +265,7 @@ case UInt: { case Bool: { TQCheckBox *checkBox = new TQCheckBox - ("", m_persistentGrid, strtoqstr(name)); + ("", m_persistentGrid, strtoqstr(name).ascii()); checkBox->setChecked(m_originalEvent.get<Bool>(name)); TQObject::connect(checkBox, TQT_SIGNAL(activated()), this, TQT_SLOT(slotBoolPropertyChanged())); @@ -277,7 +277,7 @@ case UInt: { TQLineEdit *lineEdit = new TQLineEdit (strtoqstr(m_originalEvent.get<String>(name)), m_persistentGrid, - strtoqstr(name)); + strtoqstr(name).ascii()); TQObject::connect(lineEdit, TQT_SIGNAL(textChanged(const TQString &)), this, TQT_SLOT(slotStringPropertyChanged(const TQString &))); lineEdit->show(); @@ -286,7 +286,7 @@ case UInt: { } TQPushButton *button = new TQPushButton("X", m_persistentGrid, - strtoqstr(name)); + strtoqstr(name).ascii()); button->setFixedSize(TQSize(24, 24)); TQToolTip::add (button, i18n("Delete this property")); @@ -438,7 +438,7 @@ EventEditDialog::slotPropertyDeleted() return ; m_modified = true; - TQObjectList *list = m_persistentGrid->queryList(0, propertyName, false); + TQObjectList *list = m_persistentGrid->queryList(0, propertyName.ascii(), false); TQObjectListIt i(*list); TQObject *obj; while ((obj = i.current()) != 0) { @@ -470,7 +470,7 @@ EventEditDialog::slotPropertyMadePersistent() i18n("Make &Persistent")) != KMessageBox::Continue) return ; - TQObjectList *list = m_nonPersistentGrid->queryList(0, propertyName, false); + TQObjectList *list = m_nonPersistentGrid->queryList(0, propertyName.ascii(), false); TQObjectListIt i(*list); TQObject *obj; while ((obj = i.current()) != 0) { |