diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-20 22:30:18 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-21 09:39:40 +0900 |
| commit | 4d6acadb4557b3dc9db23fe80e361f4f65289ccd (patch) | |
| tree | 536561cf7f93c1eaa56e824f1dd96b02bbdaa484 /konquest/int_validator.cpp | |
| parent | 76f734a8102bfc590570e67a73c40351ea2bbf3f (diff) | |
| download | tdegames-4d6acadb.tar.gz tdegames-4d6acadb.zip | |
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7909152750670148360093b2519955fbfa555154)
Diffstat (limited to 'konquest/int_validator.cpp')
| -rw-r--r-- | konquest/int_validator.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/konquest/int_validator.cpp b/konquest/int_validator.cpp index dd96ca82..12f707c6 100644 --- a/konquest/int_validator.cpp +++ b/konquest/int_validator.cpp @@ -4,7 +4,7 @@ #include "int_validator.moc" IntValidator::IntValidator( TQWidget *parent, const char *name ) : - TQValidator( TQT_TQOBJECT(parent), name ) + TQValidator( parent, name ) { #ifdef INT_MIN v_bottom = INT_MIN; @@ -15,7 +15,7 @@ IntValidator::IntValidator( TQWidget *parent, const char *name ) : } IntValidator::IntValidator( int bottom, int top, TQWidget *parent, const char *name ) : -TQValidator( TQT_TQOBJECT(parent), name ) +TQValidator( parent, name ) { v_bottom = bottom; v_top = top; |
