diff options
Diffstat (limited to 'libkonq/konq_dirpart.cc')
-rw-r--r-- | libkonq/konq_dirpart.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libkonq/konq_dirpart.cc b/libkonq/konq_dirpart.cc index d64dde7ef..e3059f4a2 100644 --- a/libkonq/konq_dirpart.cc +++ b/libkonq/konq_dirpart.cc @@ -133,7 +133,7 @@ KonqDirPart::KonqDirPart( TQObject *parent, const char *name ) resetCount(); //m_bMultipleItemsSelected = false; - connect( TQApplication::clipboard(), TQT_SIGNAL(dataChanged()), this, TQT_SLOT(slotClipboardDataChanged()) ); + connect( TQApplication::tqclipboard(), TQT_SIGNAL(dataChanged()), this, TQT_SLOT(slotClipboardDataChanged()) ); actionCollection()->setHighlightingEnabled( true ); @@ -301,7 +301,7 @@ void KonqDirPart::slotBackgroundSettings() m_pProps->setBgPixmapFile( dlg->pixmapFile() ); } m_pProps->applyColors( scrollWidget()->viewport() ); - scrollWidget()->viewport()->repaint(); + scrollWidget()->viewport()->tqrepaint(); } delete dlg; @@ -418,7 +418,7 @@ void KonqDirPart::slotClipboardDataChanged() // This is very related to KDIconView::slotClipboardDataChanged KURL::List lst; - TQMimeSource *data = TQApplication::clipboard()->data(); + TQMimeSource *data = TQApplication::tqclipboard()->data(); if ( data->provides( "application/x-kde-cutselection" ) && data->provides( "text/uri-list" ) ) if ( KonqDrag::decodeIsCutSelection( data ) ) (void) KURLDrag::decode( data, lst ); @@ -548,7 +548,7 @@ void KonqDirPart::slotIconSizeToggled( bool toggleOn ) // This slot is called when an iconsize action is checked or by calling // action->setChecked(false) (previously true). So we must filter out - // the 'untoggled' case to prevent odd results here (repaints/loops!) + // the 'untoggled' case to prevent odd results here (tqrepaints/loops!) if ( !toggleOn ) return; |