diff options
author | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2013-07-26 19:19:20 +0000 |
commit | 66fee909266a1dedf3dfc1f03bb0841380d78805 (patch) | |
tree | 4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /graphics/libx3dtk/files/patch-src-X3DMFNodeFunctor.inl | |
parent | Remove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff) |
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit.
Changes to infrastructure files:
- bsd.kde.mk : obsolete, remove
- bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while
- CHANGES : document the removals from bsd.port.mk
- KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead)
- MOVED : add the removed ports
PR: ports/180745
Submitted by: rene
Approved by: portmgr (bapt)
Exp-run by: bapt
Diffstat (limited to 'graphics/libx3dtk/files/patch-src-X3DMFNodeFunctor.inl')
-rw-r--r-- | graphics/libx3dtk/files/patch-src-X3DMFNodeFunctor.inl | 60 |
1 files changed, 0 insertions, 60 deletions
diff --git a/graphics/libx3dtk/files/patch-src-X3DMFNodeFunctor.inl b/graphics/libx3dtk/files/patch-src-X3DMFNodeFunctor.inl deleted file mode 100644 index 8262681bc668..000000000000 --- a/graphics/libx3dtk/files/patch-src-X3DMFNodeFunctor.inl +++ /dev/null @@ -1,60 +0,0 @@ -*** src/kernel/abstractNode/X3DMFNodeFunctor.inl.orig Sat Oct 29 13:12:06 2005 ---- src/kernel/abstractNode/X3DMFNodeFunctor.inl Sat Oct 29 13:13:23 2005 -*************** -*** 1,3 **** ---- 1,4 ---- -+ #include "X3DAbstractNodeForward.h" - #include <typeinfo> - - namespace X3DTK { -*************** -*** 20,26 **** - if (dynamic_cast<V *>(C) != 0) - { - (static_cast<T *>(N)->*_nodes).push_back(C); -! X3DAbstractNode::addParentToChild(N, C); - return true; - } - ---- 21,27 ---- - if (dynamic_cast<V *>(C) != 0) - { - (static_cast<T *>(N)->*_nodes).push_back(C); -! X3DAbstractNode_addParentToChild(N, C); - return true; - } - -*************** -*** 35,41 **** - - if (res != nodes.end()) - { -! X3DAbstractNode::removeParentFromChild(N, C); - nodes.erase(res); - return true; - } ---- 36,42 ---- - - if (res != nodes.end()) - { -! X3DAbstractNode_removeParentFromChild(N, C); - nodes.erase(res); - return true; - } -*************** -*** 51,57 **** - MFNode &nodes = (static_cast<T *>(N)->*_nodes); - - for (MFNode::const_iterator it = nodes.begin(); it != nodes.end(); ++it) -! X3DAbstractNode::removeParentFromChild(N, *it); - - nodes.clear(); - } ---- 52,58 ---- - MFNode &nodes = (static_cast<T *>(N)->*_nodes); - - for (MFNode::const_iterator it = nodes.begin(); it != nodes.end(); ++it) -! X3DAbstractNode_removeParentFromChild(N, *it); - - nodes.clear(); - } |