diff options
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")) { |