diff options
Diffstat (limited to 'digikam/utilities/setup/setupslideshow.cpp')
-rw-r--r-- | digikam/utilities/setup/setupslideshow.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/digikam/utilities/setup/setupslideshow.cpp b/digikam/utilities/setup/setupslideshow.cpp index c0416fba..886c8bfc 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); |