summaryrefslogtreecommitdiffstats
path: root/tqtinterface/qt4/src/widgets/tqlistview.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-17 18:20:57 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-07-17 18:20:57 -0500
commitafe922f3d9f62716f4e559fb1e374c04afd3db63 (patch)
tree9a671bad1056ab07f627f5e8fa774da7002e7b15 /tqtinterface/qt4/src/widgets/tqlistview.cpp
parent656b2d3e1c0a8d10f19300480f6e797a65381d1e (diff)
downloadexperimental-afe922f3d9f62716f4e559fb1e374c04afd3db63.tar.gz
experimental-afe922f3d9f62716f4e559fb1e374c04afd3db63.zip
Rename tqsize* to size*
Diffstat (limited to 'tqtinterface/qt4/src/widgets/tqlistview.cpp')
-rw-r--r--tqtinterface/qt4/src/widgets/tqlistview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tqtinterface/qt4/src/widgets/tqlistview.cpp b/tqtinterface/qt4/src/widgets/tqlistview.cpp
index bd706e9..655859f 100644
--- a/tqtinterface/qt4/src/widgets/tqlistview.cpp
+++ b/tqtinterface/qt4/src/widgets/tqlistview.cpp
@@ -3249,7 +3249,7 @@ void TQListView::clear()
delete c;
c = n;
}
- resizeContents( d->h->tqsizeHint().width(), contentsHeight() );
+ resizeContents( d->h->sizeHint().width(), contentsHeight() );
delete d->r;
d->r = 0;
TQListViewPrivate::Root * r = new TQListViewPrivate::Root( this );
@@ -3640,7 +3640,7 @@ void TQListView::updateGeometries()
if ( d->h->isHidden() ) {
setMargins( 0, 0, 0, 0 );
} else {
- TQSize hs( d->h->tqsizeHint() );
+ TQSize hs( d->h->sizeHint() );
setMargins( 0, hs.height(), 0, 0 );
d->h->setGeometry( viewport()->x(), viewport()->y()-hs.height(),
visibleWidth(), hs.height() );
@@ -6844,7 +6844,7 @@ void TQCheckListItem::paintFocus( TQPainter *p, const TQColorGroup & cg,
/*!
\reimp
*/
-TQSize TQListView::tqsizeHint() const
+TQSize TQListView::sizeHint() const
{
if ( cachedSizeHint().isValid() )
return cachedSizeHint();
@@ -6855,7 +6855,7 @@ TQSize TQListView::tqsizeHint() const
// force the column widths to sanity, if possible
buildDrawableList();
- TQSize s( d->h->tqsizeHint() );
+ TQSize s( d->h->sizeHint() );
if ( verticalScrollBar()->isVisible() )
s.setWidth( s.width() + tqstyle().tqpixelMetric(TQStyle::PM_ScrollBarExtent) );
s += TQSize(frameWidth()*2,frameWidth()*2);