diff options
| author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
|---|---|---|
| committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-09 02:23:29 +0000 |
| commit | 6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9 (patch) | |
| tree | 31d759580e3bf977fd7fea7a451b535f3c0741a6 /src/itemdocument.cpp | |
| parent | 87a016680e3677da3993f333561e79eb0cead7d5 (diff) | |
| download | ktechlab-6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9.tar.gz ktechlab-6c86748feda6b6fb15ec2ce73b18838aa6a9a7f9.zip | |
Remove the tq in front of these incorrectly TQt4-converted methods/data members:
tqrepaint[...]
tqinvalidate[...]
tqparent[...]
tqmask[...]
tqlayout[...]
tqalignment[...]
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/ktechlab@1240522 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src/itemdocument.cpp')
| -rw-r--r-- | src/itemdocument.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/itemdocument.cpp b/src/itemdocument.cpp index 0556552..215b88a 100644 --- a/src/itemdocument.cpp +++ b/src/itemdocument.cpp @@ -232,7 +232,7 @@ bool ItemDocument::openURL( const KURL &url ) ItemList::iterator end = m_itemList.end(); for ( ItemList::iterator it = m_itemList.begin(); it != end; ++it ) { - if ( !*it || (*it)->tqparentItem() ) + if ( !*it || (*it)->parentItem() ) continue; m_zOrder[(*it)->baseZ()] = *it; @@ -572,7 +572,7 @@ void ItemDocument::canvasRightClick( const TQPoint &pos, TQCanvasItem* item ) } } - p_ktechlab->unplugActionList("tqalignment_actionlist"); + p_ktechlab->unplugActionList("alignment_actionlist"); p_ktechlab->unplugActionList("orientation_actionlist"); p_ktechlab->unplugActionList("component_actionlist"); fillContextMenu(pos); @@ -611,9 +611,9 @@ void ItemDocument::fillContextMenu( const TQPoint & pos ) m_pAlignmentAction->remove( align_actions[i] ); m_pAlignmentAction->insert( align_actions[i] ); } - TQPtrList<KAction> tqalignment_actions; - tqalignment_actions.append( m_pAlignmentAction ); - p_ktechlab->plugActionList( "tqalignment_actionlist", tqalignment_actions ); + TQPtrList<KAction> alignment_actions; + alignment_actions.append( m_pAlignmentAction ); + p_ktechlab->plugActionList( "alignment_actionlist", alignment_actions ); } @@ -1039,7 +1039,7 @@ void ItemDocument::slotUpdateZOrdering() toAdd.remove(item); - if ( !item->tqparentItem() && item->isMovable() ) + if ( !item->parentItem() && item->isMovable() ) newZOrder[atLevel++] = item; } @@ -1047,7 +1047,7 @@ void ItemDocument::slotUpdateZOrdering() for ( ItemList::iterator it = toAdd.begin(); it != addEnd; ++it ) { Item * item = *it; - if ( item->tqparentItem() || !item->isMovable() ) + if ( item->parentItem() || !item->isMovable() ) continue; newZOrder[atLevel++] = item; |
