summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/setup/setuptooltip.cpp
diff options
context:
space:
mode:
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."));