summaryrefslogtreecommitdiffstats
path: root/src/cnitem.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:13:30 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-18 18:13:30 -0600
commitabb8cd68f820cfe0c96965136890a6bdd1093db5 (patch)
tree0ccc113047cebed06b5bd61adeadab4330b7d4a0 /src/cnitem.cpp
parentc1ef065782051db96cdfd32cf55be6408c2a9d22 (diff)
downloadktechlab-abb8cd68f820cfe0c96965136890a6bdd1093db5.tar.gz
ktechlab-abb8cd68f820cfe0c96965136890a6bdd1093db5.zip
Rename old tq methods that no longer need a unique name
Diffstat (limited to 'src/cnitem.cpp')
-rw-r--r--src/cnitem.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cnitem.cpp b/src/cnitem.cpp
index acf662c..91a7e88 100644
--- a/src/cnitem.cpp
+++ b/src/cnitem.cpp
@@ -65,8 +65,8 @@ int CNItem::rtti() const
bool CNItem::preResize( TQRect sizeRect )
{
- if ( (std::abs((double)sizeRect.width()) < tqminimumSize().width()) ||
- (std::abs((double)sizeRect.height()) < tqminimumSize().height()) )
+ if ( (std::abs((double)sizeRect.width()) < minimumSize().width()) ||
+ (std::abs((double)sizeRect.height()) < minimumSize().height()) )
return false;
updateConnectorPoints(false);
@@ -84,16 +84,16 @@ void CNItem::setVisible( bool yes )
{
if (b_deleted)
{
- Item::tqsetVisible(false);
+ Item::setVisible(false);
return;
}
- Item::tqsetVisible(yes);
+ Item::setVisible(yes);
const TextMap::iterator textMapEnd = m_textMap.end();
for ( TextMap::iterator it = m_textMap.begin(); it != textMapEnd; ++it )
{
- it.data()->tqsetVisible(yes);
+ it.data()->setVisible(yes);
}
const NodeMap::iterator nodeMapEnd = m_nodeMap.end();