diff options
Diffstat (limited to 'kpf/src/PropertiesDialogPlugin.cpp')
-rw-r--r-- | kpf/src/PropertiesDialogPlugin.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kpf/src/PropertiesDialogPlugin.cpp b/kpf/src/PropertiesDialogPlugin.cpp index 57f7c994..028697d3 100644 --- a/kpf/src/PropertiesDialogPlugin.cpp +++ b/kpf/src/PropertiesDialogPlugin.cpp @@ -273,9 +273,9 @@ namespace KPF } TQWidget * - PropertiesDialogPlugin::createInitWidget(TQWidget * tqparent) + PropertiesDialogPlugin::createInitWidget(TQWidget * parent) { - TQWidget * w = new TQWidget(tqparent); + TQWidget * w = new TQWidget(parent); TQLabel * about = new TQLabel @@ -316,9 +316,9 @@ namespace KPF } TQWidget * - PropertiesDialogPlugin::createConfigWidget(TQWidget * tqparent) + PropertiesDialogPlugin::createConfigWidget(TQWidget * parent) { - TQWidget * w = new TQWidget(tqparent); + TQWidget * w = new TQWidget(parent); d->cb_share = new TQCheckBox(i18n("Share this directory on the &Web"), w); |