summaryrefslogtreecommitdiffstats
path: root/smb4k/core/smb4kbookmark.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'smb4k/core/smb4kbookmark.cpp')
-rw-r--r--smb4k/core/smb4kbookmark.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/smb4k/core/smb4kbookmark.cpp b/smb4k/core/smb4kbookmark.cpp
index 2edae5f..1e02dd2 100644
--- a/smb4k/core/smb4kbookmark.cpp
+++ b/smb4k/core/smb4kbookmark.cpp
@@ -39,7 +39,7 @@ Smb4KBookmark::Smb4KBookmark( const TQString &host, const TQString &share, const
//FIXME should throw an exception if one of the param is empty
m_ip = ipIsValid( ip ) ? ip : TQString();
- m_bookmark = TQString( "//%1/%2" ).tqarg( m_host, m_share );
+ m_bookmark = TQString( "//%1/%2" ).arg( m_host, m_share );
}
@@ -48,7 +48,7 @@ Smb4KBookmark::Smb4KBookmark( Smb4KShareItem *item, const TQString &ip, const TQ
m_type( item->plainType() ), m_label( label )
{
m_ip = ipIsValid( ip ) ? ip : TQString();
- m_bookmark = TQString( "//%1/%2" ).tqarg( m_host, m_share );
+ m_bookmark = TQString( "//%1/%2" ).arg( m_host, m_share );
}
@@ -61,7 +61,7 @@ void Smb4KBookmark::setShareName( const TQString &name )
{
m_share = name;
- m_bookmark = TQString( "//%1/%2" ).tqarg( m_host, m_share );
+ m_bookmark = TQString( "//%1/%2" ).arg( m_host, m_share );
}