diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-13 11:12:50 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-06-14 10:09:21 +0900 |
commit | 8a071b48ef8c8900163227ccc622833e26ba4064 (patch) | |
tree | d55e89acc80cb967dc1b3d32b94281941c6ae77f /tools/designer | |
parent | 7bc57326e69b9c3f0eaeda63e4a49b67ba611426 (diff) | |
download | tqt3-8a071b48ef8c8900163227ccc622833e26ba4064.tar.gz tqt3-8a071b48ef8c8900163227ccc622833e26ba4064.zip |
Remove documentation about activeqt, because the latter is part of the commercial edition of Qt3
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tools/designer')
-rw-r--r-- | tools/designer/uic/object.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/tools/designer/uic/object.cpp b/tools/designer/uic/object.cpp index 748f9ed40..2aa95fd33 100644 --- a/tools/designer/uic/object.cpp +++ b/tools/designer/uic/object.cpp @@ -151,17 +151,6 @@ TQString Uic::createObjectImpl( const TQDomElement &e, const TQString& parentCla out << objName << " = new " << createObjectInstance( objClass, parent, objName ) << ";" << endl; } - if ( objClass == "TQAxWidget" ) { - TQString controlId; - for ( n = e.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() ) { - if ( n.tagName() == "property" && n.attribute( "name" ) == "control" ) { - controlId = n.firstChild().toElement().text(); - } - } - out << " "; - out << objName << "->setControl(\"" << controlId << "\");" << endl; - } - lastItem = "0"; // set the properties and insert items bool hadFrameShadow = FALSE; |