summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/setup/setuptooltip.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
commit23bfbfff2de55c72029349cc312adac29cf09809 (patch)
tree471f706949569f3531be5f2819f5071b117ce249 /digikam/utilities/setup/setuptooltip.cpp
parent0b843b137f8f7e7f3d43f7a7beafc51129668981 (diff)
downloaddigikam-23bfbfff2de55c72029349cc312adac29cf09809.tar.gz
digikam-23bfbfff2de55c72029349cc312adac29cf09809.zip
rename the following methods:
tqparent parent tqmask mask git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/digikam@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'digikam/utilities/setup/setuptooltip.cpp')
-rw-r--r--digikam/utilities/setup/setuptooltip.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/digikam/utilities/setup/setuptooltip.cpp b/digikam/utilities/setup/setuptooltip.cpp
index 7070bcd..74e30bd 100644
--- a/digikam/utilities/setup/setuptooltip.cpp
+++ b/digikam/utilities/setup/setuptooltip.cpp
@@ -100,13 +100,13 @@ public:
TQVGroupBox *digikamSettingBox;
};
-SetupToolTip::SetupToolTip(TQWidget* tqparent)
- : TQWidget(tqparent)
+SetupToolTip::SetupToolTip(TQWidget* parent)
+ : TQWidget(parent)
{
d = new SetupToolTipPriv;
- TQVBoxLayout *tqlayout = new TQVBoxLayout( tqparent, 0, KDialog::spacingHint() );
+ TQVBoxLayout *tqlayout = new TQVBoxLayout( parent, 0, KDialog::spacingHint() );
- d->showToolTipsBox = new TQCheckBox(i18n("Show album items toolti&ps"), tqparent);
+ d->showToolTipsBox = new TQCheckBox(i18n("Show album items toolti&ps"), parent);
TQWhatsThis::add( d->showToolTipsBox, i18n("<p>Set this option to display image information when "
"the mouse hovers over an album item."));
@@ -114,7 +114,7 @@ SetupToolTip::SetupToolTip(TQWidget* tqparent)
// --------------------------------------------------------
- d->fileSettingBox = new TQVGroupBox(i18n("File/Image Information"), tqparent);
+ d->fileSettingBox = new TQVGroupBox(i18n("File/Image Information"), parent);
d->showFileNameBox = new TQCheckBox(i18n("Show file name"), d->fileSettingBox);
TQWhatsThis::add( d->showFileNameBox, i18n("<p>Set this option to display the image file name."));
@@ -135,7 +135,7 @@ SetupToolTip::SetupToolTip(TQWidget* tqparent)
// --------------------------------------------------------
- d->photoSettingBox = new TQVGroupBox(i18n("Photograph Information"), tqparent);
+ d->photoSettingBox = new TQVGroupBox(i18n("Photograph Information"), parent);
d->showPhotoMakeBox = new TQCheckBox(i18n("Show camera make and model"), d->photoSettingBox);
TQWhatsThis::add( d->showPhotoMakeBox, i18n("<p>Set this option to display the make and model of the "
@@ -168,7 +168,7 @@ SetupToolTip::SetupToolTip(TQWidget* tqparent)
// --------------------------------------------------------
- d->digikamSettingBox = new TQVGroupBox(i18n("digiKam Information"), tqparent);
+ d->digikamSettingBox = new TQVGroupBox(i18n("digiKam Information"), parent);
d->showAlbumNameBox = new TQCheckBox(i18n("Show album name"), d->digikamSettingBox);
TQWhatsThis::add( d->showAlbumNameBox, i18n("<p>Set this option to display the album name."));