summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-06-13 11:12:50 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-06-14 10:09:21 +0900
commit8a071b48ef8c8900163227ccc622833e26ba4064 (patch)
treed55e89acc80cb967dc1b3d32b94281941c6ae77f /tools
parent7bc57326e69b9c3f0eaeda63e4a49b67ba611426 (diff)
downloadtqt3-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')
-rw-r--r--tools/designer/uic/object.cpp11
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;