diff options
Diffstat (limited to 'kplato/kptpertcanvas.cc')
-rw-r--r-- | kplato/kptpertcanvas.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kplato/kptpertcanvas.cc b/kplato/kptpertcanvas.cc index 09a3e744..b1f49afb 100644 --- a/kplato/kptpertcanvas.cc +++ b/kplato/kptpertcanvas.cc @@ -25,7 +25,7 @@ #include <tqbuffer.h> #include <tqtimer.h> -#include <clipboard.h> +#include <tqclipboard.h> #include <tqprogressdialog.h> #include <tqobjectlist.h> #include <tqpainter.h> @@ -83,7 +83,7 @@ void PertCanvas::draw(Project& project) if (!(it.current()->hasParent()) && it.current()->hasChild()) { m_rows.append(new TQMemArray<bool>(1)); // New node always goes into new row, first column - it.current()->move(this, m_rows.count()-1, 0); // item also moves it's children + it.current()->move(this, m_rows.count()-1, 0); // item also moves it's tqchildren } } // now items without relations @@ -140,7 +140,7 @@ void PertCanvas::createChildItems(PertNodeItem *parentItem) m_relations.append(it.current()); } - // Now my children + // Now my tqchildren TQPtrListIterator<Node> nit(parentItem->node().childNodeIterator()); for ( ; nit.current(); ++nit ) { createChildItems(createNodeItem(nit.current())); |