diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-21 11:50:18 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-21 12:00:19 +0900 |
| commit | 55cef714419f6e36e66dc75afc40682ea5c73a35 (patch) | |
| tree | 5e72b5e899aa3837c1a7fd60fbe5cc21c0acead3 /kviewshell/pageSizeWidget.cpp | |
| parent | 3849f5c32c10eba032a6738fd47331c0fa6afe1c (diff) | |
| download | tdegraphics-55cef714419f6e36e66dc75afc40682ea5c73a35.tar.gz tdegraphics-55cef714419f6e36e66dc75afc40682ea5c73a35.zip | |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kviewshell/pageSizeWidget.cpp')
| -rw-r--r-- | kviewshell/pageSizeWidget.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kviewshell/pageSizeWidget.cpp b/kviewshell/pageSizeWidget.cpp index 52e52237..9c6d387d 100644 --- a/kviewshell/pageSizeWidget.cpp +++ b/kviewshell/pageSizeWidget.cpp @@ -57,8 +57,8 @@ pageSizeWidget::pageSizeWidget( TQWidget* parent, const char* name, WFlags fl ) // Allow entries between 0 and 1200. More filtering is done by the // pageSize class, which silently ignores values which are out of // range. - widthInput->setValidator(new TQDoubleValidator(0.0, 1200.0, 1, TQT_TQOBJECT(this), "widthValidator")); - heightInput->setValidator(new TQDoubleValidator(0.0, 1200.0, 1, TQT_TQOBJECT(this), "heightValidator")); + widthInput->setValidator(new TQDoubleValidator(0.0, 1200.0, 1, this, "widthValidator")); + heightInput->setValidator(new TQDoubleValidator(0.0, 1200.0, 1, this, "heightValidator")); } |
