diff options
Diffstat (limited to 'digikam/libs/widgets/common/histogramwidget.cpp')
-rw-r--r-- | digikam/libs/widgets/common/histogramwidget.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/digikam/libs/widgets/common/histogramwidget.cpp b/digikam/libs/widgets/common/histogramwidget.cpp index 3bb49d42..b88ddb9d 100644 --- a/digikam/libs/widgets/common/histogramwidget.cpp +++ b/digikam/libs/widgets/common/histogramwidget.cpp @@ -110,9 +110,9 @@ public: // Constructor without image data (needed to use updateData() method after instance created). HistogramWidget::HistogramWidget(int w, int h, - TQWidget *tqparent, bool selectMode, + TQWidget *parent, bool selectMode, bool showProgress, bool statisticsVisible) - : TQWidget(tqparent, 0, TQt::WDestructiveClose) + : TQWidget(parent, 0, TQt::WDestructiveClose) { d = new HistogramWidgetPriv; setup(w, h, selectMode, showProgress, statisticsVisible); @@ -126,9 +126,9 @@ HistogramWidget::HistogramWidget(int w, int h, HistogramWidget::HistogramWidget(int w, int h, uchar *i_data, uint i_w, uint i_h, bool i_sixteenBits, - TQWidget *tqparent, bool selectMode, + TQWidget *parent, bool selectMode, bool showProgress, bool statisticsVisible) - : TQWidget(tqparent, 0, TQt::WDestructiveClose) + : TQWidget(parent, 0, TQt::WDestructiveClose) { d = new HistogramWidgetPriv; d->sixteenBits = i_sixteenBits; @@ -144,9 +144,9 @@ HistogramWidget::HistogramWidget(int w, int h, uchar *i_data, uint i_w, uint i_h, uchar *s_data, uint s_w, uint s_h, bool i_sixteenBits, - TQWidget *tqparent, bool selectMode, + TQWidget *parent, bool selectMode, bool showProgress, bool statisticsVisible) - : TQWidget(tqparent, 0, TQt::WDestructiveClose) + : TQWidget(parent, 0, TQt::WDestructiveClose) { d = new HistogramWidgetPriv; d->sixteenBits = i_sixteenBits; |