diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:07:53 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 22:47:48 +0900 |
| commit | 9577f4de07539fb2464a1499d45b25993c5cea46 (patch) | |
| tree | 61e334870fb8bbdb96a67452e974b13e09cb0038 /src/modules/objects/class_slider.cpp | |
| parent | 87c77000cf1838c2695e7944d4f205ffb9fb44b4 (diff) | |
| download | kvirc-9577f4de07539fb2464a1499d45b25993c5cea46.tar.gz kvirc-9577f4de07539fb2464a1499d45b25993c5cea46.zip | |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/modules/objects/class_slider.cpp')
| -rw-r--r-- | src/modules/objects/class_slider.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/objects/class_slider.cpp b/src/modules/objects/class_slider.cpp index a8e3d93..462bc14 100644 --- a/src/modules/objects/class_slider.cpp +++ b/src/modules/objects/class_slider.cpp @@ -49,7 +49,7 @@ @functions: !fn: $setOrientation(<orientation:string>) Sets the slider's orientation.[br] - Qt::Orientation value can be "Horizontal" or "Vertical". + Orientation value can be "Horizontal" or "Vertical". !fn: $setTracking(<bTracking:boolean>) Sets whether slider tracking is enabled to enable.[br] Value can be 1 or 0. @@ -265,9 +265,9 @@ bool KviKvsObject_slider::functionsetOrientation(KviKvsObjectFunctionCall *c) KVSO_PARAMETERS_END(c) if(!widget())return true; if(KviTQString::equalCI(szOrientation,"Horizontal")) - ((TQSlider *)widget())->setOrientation(Qt::Horizontal); + ((TQSlider *)widget())->setOrientation(TQt::Horizontal); else if(KviTQString::equalCI(szOrientation,"Vertical")) - ((TQSlider *)widget())->setOrientation(Qt::Vertical); + ((TQSlider *)widget())->setOrientation(TQt::Vertical); else c->warning( __tr2qs("Unknown orientation '%Q'"),&szOrientation); return true; } |
