summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/setup/setupslideshow.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/setupslideshow.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/setupslideshow.cpp')
-rw-r--r--digikam/utilities/setup/setupslideshow.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/digikam/utilities/setup/setupslideshow.cpp b/digikam/utilities/setup/setupslideshow.cpp
index c0416fb..886c8bf 100644
--- a/digikam/utilities/setup/setupslideshow.cpp
+++ b/digikam/utilities/setup/setupslideshow.cpp
@@ -73,40 +73,40 @@ public:
KIntNumInput *delayInput;
};
-SetupSlideShow::SetupSlideShow(TQWidget* tqparent )
- : TQWidget(tqparent)
+SetupSlideShow::SetupSlideShow(TQWidget* parent )
+ : TQWidget(parent)
{
d = new SetupSlideShowPriv;
- TQVBoxLayout *tqlayout = new TQVBoxLayout( tqparent );
+ TQVBoxLayout *tqlayout = new TQVBoxLayout( parent );
- d->delayInput = new KIntNumInput(5, tqparent);
+ d->delayInput = new KIntNumInput(5, parent);
d->delayInput->setRange(1, 3600, 1, true );
d->delayInput->setLabel( i18n("&Delay between images:"), AlignLeft|AlignTop );
TQWhatsThis::add( d->delayInput, i18n("<p>The delay, in seconds, between images."));
- d->startWithCurrent = new TQCheckBox(i18n("Start with current image"), tqparent);
+ d->startWithCurrent = new TQCheckBox(i18n("Start with current image"), parent);
TQWhatsThis::add( d->startWithCurrent, i18n("<p>If this option is enabled, slideshow will be started "
"with currently selected image."));
- d->loopMode = new TQCheckBox(i18n("Display in a loop"), tqparent);
+ d->loopMode = new TQCheckBox(i18n("Display in a loop"), parent);
TQWhatsThis::add( d->loopMode, i18n("<p>Run the slideshow in endless repetition."));
- d->printName = new TQCheckBox(i18n("Print image file name"), tqparent);
+ d->printName = new TQCheckBox(i18n("Print image file name"), parent);
TQWhatsThis::add( d->printName, i18n("<p>Print the image file name at the bottom of the screen."));
- d->printDate = new TQCheckBox(i18n("Print image creation date"), tqparent);
+ d->printDate = new TQCheckBox(i18n("Print image creation date"), parent);
TQWhatsThis::add( d->printDate, i18n("<p>Print the image creation time/date at the bottom of the screen."));
- d->printApertureFocal = new TQCheckBox(i18n("Print camera aperture and focal length"), tqparent);
+ d->printApertureFocal = new TQCheckBox(i18n("Print camera aperture and focal length"), parent);
TQWhatsThis::add( d->printApertureFocal, i18n("<p>Print the camera aperture and focal length at the bottom of the screen."));
- d->printExpoSensitivity = new TQCheckBox(i18n("Print camera exposure and sensitivity"), tqparent);
+ d->printExpoSensitivity = new TQCheckBox(i18n("Print camera exposure and sensitivity"), parent);
TQWhatsThis::add( d->printExpoSensitivity, i18n("<p>Print the camera exposure and sensitivity at the bottom of the screen."));
- d->printMakeModel = new TQCheckBox(i18n("Print camera make and model"), tqparent);
+ d->printMakeModel = new TQCheckBox(i18n("Print camera make and model"), parent);
TQWhatsThis::add( d->printMakeModel, i18n("<p>Print the camera make and model at the bottom of the screen."));
- d->printComment = new TQCheckBox(i18n("Print image caption"), tqparent);
+ d->printComment = new TQCheckBox(i18n("Print image caption"), parent);
TQWhatsThis::add( d->printComment, i18n("<p>Print the image caption at the bottom of the screen."));
tqlayout->addWidget(d->delayInput);