summaryrefslogtreecommitdiffstats
path: root/ark/lha.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ark/lha.cpp')
-rw-r--r--ark/lha.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ark/lha.cpp b/ark/lha.cpp
index d34fd51..f83e809 100644
--- a/ark/lha.cpp
+++ b/ark/lha.cpp
@@ -67,7 +67,7 @@ bool LhaArch::processLine( const TQCString &line )
char columns[13][80];
char filename[4096];
- if ( line.tqcontains( "[generic]" ) )
+ if ( line.contains( "[generic]" ) )
{
sscanf( _line,
" %79[]\\[generic] %79[0-9] %79[0-9] %79[0-9.%*] %10[-a-z0-9 ] %3[A-Za-z]%1[ ]%2[0-9 ]%1[ ]%5[ 0-9:]%1[ ]%4095[^\n]",
@@ -76,7 +76,7 @@ bool LhaArch::processLine( const TQCString &line )
columns[9], filename );
strcpy( columns[1], " " );
}
- else if ( line.tqcontains( "[MS-DOS]" ) )
+ else if ( line.contains( "[MS-DOS]" ) )
{
sscanf( _line,
" %79[]\\[MS-DOS] %79[0-9] %79[0-9] %79[0-9.%*] %10[-a-z0-9 ] %3[A-Za-z]%1[ ]%2[0-9 ]%1[ ]%5[ 0-9:]%1[ ]%4095[^\n]",
@@ -103,7 +103,7 @@ bool LhaArch::processLine( const TQCString &line )
TQString file = filename;
TQString name, link;
bool bLink = false;
- int pos = file.tqfind( " -> " );
+ int pos = file.find( " -> " );
if ( pos != -1 )
{
bLink = true;