summaryrefslogtreecommitdiffstats
path: root/konqueror/konq_profiledlg.cc
diff options
context:
space:
mode:
Diffstat (limited to 'konqueror/konq_profiledlg.cc')
-rw-r--r--konqueror/konq_profiledlg.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/konqueror/konq_profiledlg.cc b/konqueror/konq_profiledlg.cc
index 2a3547068..33f36945f 100644
--- a/konqueror/konq_profiledlg.cc
+++ b/konqueror/konq_profiledlg.cc
@@ -104,7 +104,7 @@ KonqProfileDlg::KonqProfileDlg( KonqViewManager *manager, const TQString & prese
TQT_SLOT( slotItemRenamed( TQListViewItem * ) ) );
loadAllProfiles( preselectProfile );
- m_pListView->setMinimumSize( m_pListView->sizeHint() );
+ m_pListView->setMinimumSize( m_pListView->tqsizeHint() );
m_cbSaveURLs = new TQCheckBox( i18n("Save &URLs in profile"), box );
m_cbSaveURLs->setChecked( KonqSettings::saveURLInProfile() );
@@ -121,7 +121,7 @@ KonqProfileDlg::KonqProfileDlg( KonqViewManager *manager, const TQString & prese
enableButton( BTN_RENAME, m_pListView->selectedItem ()!=0 );
enableButton( BTN_DELETE, m_pListView->selectedItem ()!=0 );
- resize( sizeHint() );
+ resize( tqsizeHint() );
}
KonqProfileDlg::~KonqProfileDlg()
@@ -141,7 +141,7 @@ void KonqProfileDlg::loadAllProfiles(const TQString & preselectProfile)
for (; eIt != eEnd; ++eIt )
{
TQListViewItem *item = new KonqProfileItem( m_pListView, eIt.key() );
- TQString filename = eIt.data().mid( eIt.data().findRev( '/' ) + 1 );
+ TQString filename = eIt.data().mid( eIt.data().tqfindRev( '/' ) + 1 );
kdDebug(1202) << filename << endl;
if ( filename == preselectProfile )
{
@@ -161,7 +161,7 @@ void KonqProfileDlg::slotUser3() // Save button
// Reuse filename of existing item, if any
if ( m_pListView->selectedItem() )
{
- KonqProfileMap::Iterator it = m_mapEntries.find( m_pListView->selectedItem()->text(0) );
+ KonqProfileMap::Iterator it = m_mapEntries.tqfind( m_pListView->selectedItem()->text(0) );
if ( it != m_mapEntries.end() )
{
TQFileInfo info( it.data() );
@@ -180,7 +180,7 @@ void KonqProfileDlg::slotUser2() // Delete button
{
if(!m_pListView->selectedItem())
return;
- KonqProfileMap::Iterator it = m_mapEntries.find( m_pListView->selectedItem()->text(0) );
+ KonqProfileMap::Iterator it = m_mapEntries.tqfind( m_pListView->selectedItem()->text(0) );
if ( it != m_mapEntries.end() && TQFile::remove( it.data() ) )
loadAllProfiles();
@@ -206,7 +206,7 @@ void KonqProfileDlg::slotItemRenamed( TQListViewItem * item )
if (!newName.isEmpty())
{
- KonqProfileMap::ConstIterator it = m_mapEntries.find( oldName );
+ KonqProfileMap::ConstIterator it = m_mapEntries.tqfind( oldName );
if ( it != m_mapEntries.end() )
{