diff options
Diffstat (limited to 'kexi/plugins/forms/widgets/kexidblineedit.cpp')
-rw-r--r-- | kexi/plugins/forms/widgets/kexidblineedit.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/kexi/plugins/forms/widgets/kexidblineedit.cpp b/kexi/plugins/forms/widgets/kexidblineedit.cpp index 0b1709e1..5bb74e22 100644 --- a/kexi/plugins/forms/widgets/kexidblineedit.cpp +++ b/kexi/plugins/forms/widgets/kexidblineedit.cpp @@ -40,8 +40,8 @@ class KexiDBLineEdit_ReadOnlyValidator : public TQValidator { public: - KexiDBLineEdit_ReadOnlyValidator( TQObject * tqparent ) - : TQValidator(tqparent) + KexiDBLineEdit_ReadOnlyValidator( TQObject * parent ) + : TQValidator(parent) { } ~KexiDBLineEdit_ReadOnlyValidator() {} @@ -50,8 +50,8 @@ class KexiDBLineEdit_ReadOnlyValidator : public TQValidator //----- -KexiDBLineEdit::KexiDBLineEdit(TQWidget *tqparent, const char *name) - : KLineEdit(tqparent, name) +KexiDBLineEdit::KexiDBLineEdit(TQWidget *parent, const char *name) + : KLineEdit(parent, name) , KexiDBTextWidgetInterface() , KexiFormDataItemInterface() //moved , m_dateFormatter(0) @@ -303,7 +303,7 @@ void KexiDBLineEdit::setColumnInfo(KexiDB::QueryColumnInfo* cinfo) if (!cinfo) return; -//! @todo handle input tqmask (via TQLineEdit::setInputMask()) using a special KexiDB::FieldInputMask class +//! @todo handle input mask (via TQLineEdit::setInputMask()) using a special KexiDB::FieldInputMask class setValidator( new KexiDB::FieldValidator(*cinfo->field, this) ); #if 0 // moved to KexiTextFormatter |