diff options
author | Michele Calgaro <[email protected]> | 2023-11-04 23:32:34 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-04 23:32:34 +0900 |
commit | 4ee90855df32a13209bd394b86d81446aa2e31ad (patch) | |
tree | c03b5982be7789561bd592039098d51ffcef0458 /src/kmplayerprocess.cpp | |
parent | d8d54a7f44f6c0c9904f6505b35c8e370267f56c (diff) | |
download | kmplayer-4ee90855df32a13209bd394b86d81446aa2e31ad.tar.gz kmplayer-4ee90855df32a13209bd394b86d81446aa2e31ad.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/kmplayerprocess.cpp')
-rw-r--r-- | src/kmplayerprocess.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kmplayerprocess.cpp b/src/kmplayerprocess.cpp index 13959a9..6a77333 100644 --- a/src/kmplayerprocess.cpp +++ b/src/kmplayerprocess.cpp @@ -1508,7 +1508,7 @@ TQWidget * TypeNode::createWidget (TQWidget * parent) { if (!strcmp (ctype, "range")) { w = new TQSlider (getAttribute (TQString ("START")).toInt (), getAttribute (StringPool::attr_end).toInt (), - 1, value.toInt (), Qt::Horizontal, parent); + 1, value.toInt (), TQt::Horizontal, parent); } else if (!strcmp (ctype, "num") || !strcmp (ctype, "string")) { w = new TQLineEdit (value, parent); } else if (!strcmp (ctype, "bool")) { |