summaryrefslogtreecommitdiffstats
path: root/smb4k/dialogs/smb4kpreviewdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/dialogs/smb4kpreviewdialog.cpp')
-rw-r--r--smb4k/dialogs/smb4kpreviewdialog.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/smb4k/dialogs/smb4kpreviewdialog.cpp b/smb4k/dialogs/smb4kpreviewdialog.cpp
index 6c06919..0b7c280 100644
--- a/smb4k/dialogs/smb4kpreviewdialog.cpp
+++ b/smb4k/dialogs/smb4kpreviewdialog.cpp
@@ -172,7 +172,7 @@ void Smb4KPreviewDialog::slotReceivedData( Smb4KPreviewItem *item )
for ( TQStringList::Iterator it = m_history.begin(); it != m_history.end(); it++ )
{
- if ( !m_combo->listBox()->tqfindItem( *it, TQt::CaseSensitive|TQt::ExactMatch ) )
+ if ( !m_combo->listBox()->findItem( *it, TQt::CaseSensitive|TQt::ExactMatch ) )
{
m_combo->insertItem( *it, -1 );
}
@@ -285,11 +285,11 @@ void Smb4KPreviewDialog::slotButtonClicked( int id )
return;
}
- if ( m_item->path().tqcontains( "/" ) > 1 )
+ if ( m_item->path().contains( "/" ) > 1 )
{
m_item->setPath( m_item->path().section( "/", 0, -3 ).append( "/" ) );
}
- else if ( m_item->path().tqcontains( "/", true ) == 1 )
+ else if ( m_item->path().contains( "/", true ) == 1 )
{
m_item->setPath( TQString() );
}
@@ -311,7 +311,7 @@ void Smb4KPreviewDialog::slotButtonClicked( int id )
}
// Get the path:
- if ( (*m_current_item).tqcontains( "/", true ) == 3 )
+ if ( (*m_current_item).contains( "/", true ) == 3 )
{
m_item->setPath( TQString() );
}
@@ -346,7 +346,7 @@ void Smb4KPreviewDialog::slotButtonClicked( int id )
}
// Get the path:
- if ( (*m_current_item).tqcontains( "/", true ) == 3 )
+ if ( (*m_current_item).contains( "/", true ) == 3 )
{
m_item->setPath( TQString() );
}