summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/setup/setupslideshow.cpp
diff options
context:
space:
mode:
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 100e7cfc..886c8bfc 100644
--- a/digikam/utilities/setup/setupslideshow.cpp
+++ b/digikam/utilities/setup/setupslideshow.cpp
@@ -23,7 +23,7 @@
// TQt includes.
-#include <layout.h>
+#include <tqlayout.h>
#include <tqlabel.h>
#include <tqwhatsthis.h>
#include <tqcheckbox.h>
@@ -77,7 +77,7 @@ SetupSlideShow::SetupSlideShow(TQWidget* parent )
: TQWidget(parent)
{
d = new SetupSlideShowPriv;
- TQVBoxLayout *layout = new TQVBoxLayout( parent );
+ TQVBoxLayout *tqlayout = new TQVBoxLayout( parent );
d->delayInput = new KIntNumInput(5, parent);
d->delayInput->setRange(1, 3600, 1, true );
@@ -109,16 +109,16 @@ SetupSlideShow::SetupSlideShow(TQWidget* parent )
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."));
- layout->addWidget(d->delayInput);
- layout->addWidget(d->startWithCurrent);
- layout->addWidget(d->loopMode);
- layout->addWidget(d->printName);
- layout->addWidget(d->printDate);
- layout->addWidget(d->printApertureFocal);
- layout->addWidget(d->printExpoSensitivity);
- layout->addWidget(d->printMakeModel);
- layout->addWidget(d->printComment);
- layout->addStretch();
+ tqlayout->addWidget(d->delayInput);
+ tqlayout->addWidget(d->startWithCurrent);
+ tqlayout->addWidget(d->loopMode);
+ tqlayout->addWidget(d->printName);
+ tqlayout->addWidget(d->printDate);
+ tqlayout->addWidget(d->printApertureFocal);
+ tqlayout->addWidget(d->printExpoSensitivity);
+ tqlayout->addWidget(d->printMakeModel);
+ tqlayout->addWidget(d->printComment);
+ tqlayout->addStretch();
readSettings();
}