Fixed failure to create new application shrtcut from context menu

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdelibs@1177007 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 14 years ago
parent 26a188969c
commit e0455e8952

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 29 KiB

@ -196,7 +196,7 @@ TQWidget* KFileMetaInfoWidget::makeIntWidget()
if (m_validator)
{
if (m_validator->inherits("TQIntValidator"))
if (m_validator->inherits("QIntValidator"))
{
sb->setMinValue(static_cast<TQIntValidator*>(m_validator)->bottom());
sb->setMaxValue(static_cast<TQIntValidator*>(m_validator)->top());
@ -221,7 +221,7 @@ TQWidget* KFileMetaInfoWidget::makeDoubleWidget()
if (m_validator)
{
if (m_validator->inherits("TQDoubleValidator"))
if (m_validator->inherits("QDoubleValidator"))
{
dni->setMinValue(static_cast<TQDoubleValidator*>(m_validator)->bottom());
dni->setMaxValue(static_cast<TQDoubleValidator*>(m_validator)->top());
@ -301,7 +301,7 @@ void KFileMetaInfoWidget::reparentValidator( TQWidget *widget,
void KFileMetaInfoWidget::slotChanged(bool value)
{
Q_ASSERT(m_widget->inherits("TQComboBox"));
Q_ASSERT(m_widget->inherits("QComboBox"));
m_value = TQVariant(value);
emit valueChanged(m_value);
m_dirty = true;
@ -309,7 +309,7 @@ void KFileMetaInfoWidget::slotChanged(bool value)
void KFileMetaInfoWidget::slotChanged(int value)
{
Q_ASSERT(m_widget->inherits("TQSpinBox"));
Q_ASSERT(m_widget->inherits("QSpinBox"));
m_value = TQVariant(value);
emit valueChanged(m_value);
m_dirty = true;
@ -342,7 +342,7 @@ void KFileMetaInfoWidget::slotLineEditChanged(const TQString& value)
// that may be a little expensive for long texts, but what can we do?
void KFileMetaInfoWidget::slotMultiLineEditChanged()
{
Q_ASSERT(m_widget->inherits("TQTextEdit"));
Q_ASSERT(m_widget->inherits("QTextEdit"));
m_value = TQVariant( static_cast<const TQTextEdit*>( sender() )->text() );
emit valueChanged(m_value);
m_dirty = true;

@ -1317,7 +1317,7 @@ void KFilePropsPlugin::applyChanges()
kdDebug(250) << "KFilePropsPlugin::applyChanges" << endl;
if (nameArea->inherits("TQLineEdit"))
if (nameArea->inherits("QLineEdit"))
{
TQString n = ((TQLineEdit *) nameArea)->text();
// Remove trailing spaces (#4345)

Loading…
Cancel
Save