summaryrefslogtreecommitdiffstats
path: root/kipi-plugins/metadataedit/iptcsubjects.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2011-08-10 22:19:39 +0000
commitea3848d71d9559414d14d0a8b8bb1ebb684f46c2 (patch)
tree859d20a007be94df4bf0b78cdf3720bfee903892 /kipi-plugins/metadataedit/iptcsubjects.cpp
parent94ec53c96c3d5dc4a427e7dc4bbaa863add5cfa4 (diff)
downloadkipi-plugins-ea3848d71d9559414d14d0a8b8bb1ebb684f46c2.tar.gz
kipi-plugins-ea3848d71d9559414d14d0a8b8bb1ebb684f46c2.zip
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
Diffstat (limited to 'kipi-plugins/metadataedit/iptcsubjects.cpp')
-rw-r--r--kipi-plugins/metadataedit/iptcsubjects.cpp18
1 files changed, 9 insertions, 9 deletions
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("<p>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 "
"<b><a href='http://en.wikipedia.org/wiki/Ascii'>ASCII</a></b> "
"characters set and limit strings size. "
- "Use contextual help for details.</b>"), tqparent);
+ "Use contextual help for details.</b>"), parent);
note->setMaximumWidth(150);
grid->addMultiCellWidget(note, 4, 4, 1, 1);