diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 22:19:39 +0000 |
commit | e47aaa9b34ffc363d268aca989aab28fdfaf9821 (patch) | |
tree | 369b56d21949c574d30f71bdf24bf1e04f5e1877 /src/icndocument.cpp | |
parent | e05894553004a47b1e2f276bedcf5963b57a3932 (diff) | |
download | ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.tar.gz ktechlab-e47aaa9b34ffc363d268aca989aab28fdfaf9821.zip |
rename the following methods:
tqparent parent
tqmask mask
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1246260 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/icndocument.cpp')
-rw-r--r-- | src/icndocument.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/icndocument.cpp b/src/icndocument.cpp index 2fd4986..e78e631 100644 --- a/src/icndocument.cpp +++ b/src/icndocument.cpp @@ -803,7 +803,7 @@ void ICNDocument::appendDeleteList( TQCanvasItem *qcanvasItem ) { Connector *connector = dynamic_cast<Connector*>(qcanvasItem); if (!connector) - connector = (dynamic_cast<ConnectorLine*>(qcanvasItem))->tqparent(); + connector = (dynamic_cast<ConnectorLine*>(qcanvasItem))->parent(); connector->removeConnector(); } else @@ -872,7 +872,7 @@ void ICNDocument::flushDeleteList() bool ICNDocument::joinConnectors( Node *node ) { - // We don't want to destroy the node if it has a tqparent + // We don't want to destroy the node if it has a parent if ( node->parentItem() ) return false; @@ -1374,9 +1374,9 @@ void DirCursor::initCursors() { // TQCursor c(TQt::ArrowCursor); // TQBitmap bitmap = *c.bitmap(); -// TQBitmap tqmask = *c.tqmask(); +// TQBitmap mask = *c.mask(); // TQPixmap pm( bitmap->width(), bitmap->height() ); -// pm.setMask(tqmask); +// pm.setMask(mask); // pm = c.pi // @todo finish } |