From ea3848d71d9559414d14d0a8b8bb1ebb684f46c2 Mon Sep 17 00:00:00 2001 From: tpearson Date: Wed, 10 Aug 2011 22:19:39 +0000 Subject: rename the following methods: tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/libraries/kipi-plugins@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kipi-plugins/metadataedit/iptcsubjects.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'kipi-plugins/metadataedit/iptcsubjects.cpp') diff --git a/kipi-plugins/metadataedit/iptcsubjects.cpp b/kipi-plugins/metadataedit/iptcsubjects.cpp index 11ad303..d21a96e 100644 --- a/kipi-plugins/metadataedit/iptcsubjects.cpp +++ b/kipi-plugins/metadataedit/iptcsubjects.cpp @@ -75,11 +75,11 @@ public: KListBox *subjectsBox; }; -IPTCSubjects::IPTCSubjects(TQWidget* tqparent) - : TQWidget(tqparent) +IPTCSubjects::IPTCSubjects(TQWidget* parent) + : TQWidget(parent) { d = new IPTCSubjectsPriv; - TQGridLayout *grid = new TQGridLayout(tqparent, 5, 2, 0, KDialog::spacingHint()); + TQGridLayout *grid = new TQGridLayout(parent, 5, 2, 0, KDialog::spacingHint()); grid->tqsetAlignment( TQt::AlignTop ); // IPTC only accept printable Ascii char. @@ -88,19 +88,19 @@ IPTCSubjects::IPTCSubjects(TQWidget* tqparent) // -------------------------------------------------------- - d->subjectsCheck = new TQCheckBox(i18n("Use structured definition of the subject matter:"), tqparent); + d->subjectsCheck = new TQCheckBox(i18n("Use structured definition of the subject matter:"), parent); - d->subjectEdit = new KLineEdit(tqparent); + d->subjectEdit = new KLineEdit(parent); d->subjectEdit->setValidator(asciiValidator); d->subjectEdit->setMaxLength(236); TQWhatsThis::add(d->subjectEdit, i18n("

Enter here a new subject. " "This field is limited to 236 ASCII characters.")); - d->subjectsBox = new KListBox(tqparent); + d->subjectsBox = new KListBox(parent); d->subjectsBox->setVScrollBarMode(TQScrollView::AlwaysOn); - d->addSubjectButton = new TQPushButton( i18n("&Add"), tqparent); - d->delSubjectButton = new TQPushButton( i18n("&Delete"), tqparent); + d->addSubjectButton = new TQPushButton( i18n("&Add"), parent); + d->delSubjectButton = new TQPushButton( i18n("&Delete"), parent); d->addSubjectButton->setIconSet(SmallIcon("add")); d->delSubjectButton->setIconSet(SmallIcon("remove")); d->delSubjectButton->setEnabled(false); @@ -118,7 +118,7 @@ IPTCSubjects::IPTCSubjects(TQWidget* tqparent) "text tags only support the printable " "ASCII " "characters set and limit strings size. " - "Use contextual help for details."), tqparent); + "Use contextual help for details."), parent); note->setMaximumWidth(150); grid->addMultiCellWidget(note, 4, 4, 1, 1); -- cgit v1.2.3