diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-12-19 11:38:41 -0600 |
commit | f0de9e167e289ab7dc33e57f077c1f04ec7c68c8 (patch) | |
tree | 1fc538e179833e62caec21956bfe47a252be5a72 /karbon/dockers | |
parent | 11191ef0b9908604d1d7aaca382b011ef22c454c (diff) | |
download | koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.tar.gz koffice-f0de9e167e289ab7dc33e57f077c1f04ec7c68c8.zip |
Remove additional unneeded tq method conversions
Diffstat (limited to 'karbon/dockers')
-rw-r--r-- | karbon/dockers/vdocumentdocker.cc | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/karbon/dockers/vdocumentdocker.cc b/karbon/dockers/vdocumentdocker.cc index a029d242..3812c790 100644 --- a/karbon/dockers/vdocumentdocker.cc +++ b/karbon/dockers/vdocumentdocker.cc @@ -320,7 +320,7 @@ VObjectListViewItem::~VObjectListViewItem() TQString VObjectListViewItem::key( int, bool ) const { - return TQString( "%1" ).tqarg( m_key ); + return TQString( "%1" ).arg( m_key ); } void @@ -329,7 +329,7 @@ VObjectListViewItem::update() // text description VSelectionDescription selectionDesc; selectionDesc.visit( *m_object ); - setText( 0, TQString( "%1" ).tqarg( selectionDesc.shortDescription() ) ); + setText( 0, TQString( "%1" ).arg( selectionDesc.shortDescription() ) ); // draw thumb preview (16x16) TQPixmap preview; @@ -438,7 +438,7 @@ VLayerListViewItem::pos() TQString VLayerListViewItem::key( int, bool ) const { - return TQString( "%1" ).tqarg( m_key ); + return TQString( "%1" ).arg( m_key ); } int @@ -531,7 +531,7 @@ VLayersTab::resetSelection() for(; it.current(); ++it ) { it.current()->setSelected( false ); - it.current()->tqrepaint(); + it.current()->repaint(); } } @@ -556,14 +556,14 @@ VLayersTab::selectActiveLayer() for(; it.current(); ++it ) { it.current()->setSelected( false ); - it.current()->tqrepaint(); + it.current()->repaint(); } VLayerListViewItem *layerItem = m_layers[ m_document->activeLayer() ]; if( layerItem ) { layerItem->setSelected( true ); - layerItem->tqrepaint(); + layerItem->repaint(); kdDebug(38000) << "selecting active layer: " << layerItem->text() << endl; } } @@ -620,7 +620,7 @@ VLayersTab::updateChildItems( TQListViewItem *item ) updateChildItems( objectItem ); objectItem->update(); - objectItem->tqrepaint(); + objectItem->repaint(); } } @@ -676,7 +676,7 @@ VLayersTab::itemClicked( TQListViewItem* item, const TQPoint &, int col ) toggleState( layerItem->layer(), col ); layerItem->update(); - layerItem->tqrepaint(); + layerItem->repaint(); updateChildItems( layerItem ); @@ -703,7 +703,7 @@ VLayersTab::itemClicked( TQListViewItem* item, const TQPoint &, int col ) objectItem->setSelected( false ); objectItem->update(); - objectItem->tqrepaint(); + objectItem->repaint(); if( dynamic_cast<VGroup*>( objectItem->object() ) ) updateChildItems( objectItem ); @@ -740,7 +740,7 @@ VLayersTab::selectionChangedFromList() && (state != VObject::hidden_locked) ) { m_document->selection()->append( objectItem->object() ); - objectItem->tqrepaint(); + objectItem->repaint(); } } |