diff options
Diffstat (limited to 'kio/bookmarks/kbookmarkimporter_kde1.cc')
-rw-r--r-- | kio/bookmarks/kbookmarkimporter_kde1.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kio/bookmarks/kbookmarkimporter_kde1.cc b/kio/bookmarks/kbookmarkimporter_kde1.cc index 49999e675..ac0d29b97 100644 --- a/kio/bookmarks/kbookmarkimporter_kde1.cc +++ b/kio/bookmarks/kbookmarkimporter_kde1.cc @@ -81,8 +81,8 @@ void KBookmarkImporter::scanIntern( TQDomElement & parentElem, const TQString & parentElem.appendChild( groupElem ); TQDomElement textElem = m_pDoc->createElement( "title" ); groupElem.appendChild( textElem ); - textElem.appendChild( m_pDoc->createTextNode( KIO::decodeFileName( ep->d_name ) ) ); - if ( KIO::decodeFileName( ep->d_name ) == "Toolbar" ) + textElem.appendChild( m_pDoc->createTextNode( TDEIO::decodeFileName( ep->d_name ) ) ); + if ( TDEIO::decodeFileName( ep->d_name ) == "Toolbar" ) groupElem.setAttribute("toolbar","yes"); scanIntern( groupElem, file.path() ); } @@ -136,7 +136,7 @@ void KBookmarkImporter::parseBookmark( TQDomElement & parentElem, TQCString _tex if (icon.right( 4 ) == ".xpm" ) // prevent warnings icon.truncate( icon.length() - 4 ); - TQString text = KIO::decodeFileName( TQString::fromLocal8Bit(_text) ); + TQString text = TDEIO::decodeFileName( TQString::fromLocal8Bit(_text) ); if ( text.length() > 8 && text.right( 8 ) == ".desktop" ) text.truncate( text.length() - 8 ); if ( text.length() > 7 && text.right( 7 ) == ".kdelnk" ) |