diff options
Diffstat (limited to 'kcontrol/ebrowsing/main.cpp')
-rw-r--r-- | kcontrol/ebrowsing/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kcontrol/ebrowsing/main.cpp b/kcontrol/ebrowsing/main.cpp index a41ab92e3..f6e5efc49 100644 --- a/kcontrol/ebrowsing/main.cpp +++ b/kcontrol/ebrowsing/main.cpp @@ -56,7 +56,7 @@ KURIFilterModule::KURIFilterModule(TQWidget *parent, const char *name, const TQS " Even easier: just press Alt+F2 (if you have not" " changed this shortcut) and enter the shortcut in the KDE Run Command dialog.")); - TQVBoxLayout *layout = new TQVBoxLayout(this); + TQVBoxLayout *tqlayout = new TQVBoxLayout(this); #if 0 opts = new FilterOptions(this); @@ -95,10 +95,10 @@ KURIFilterModule::KURIFilterModule(TQWidget *parent, const char *name, const TQS else if (modules.count() == 1) { widget = modules.first(); - layout->setMargin(-KDialog::marginHint()); + tqlayout->setMargin(-KDialog::marginHint()); } - layout->addWidget(widget); + tqlayout->addWidget(widget); } void KURIFilterModule::load() |