summaryrefslogtreecommitdiffstats
path: root/kig/kfile/kfile_kig.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kig/kfile/kfile_kig.cpp')
-rw-r--r--kig/kfile/kfile_kig.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kig/kfile/kfile_kig.cpp b/kig/kfile/kfile_kig.cpp
index 496a851f..7618d3b4 100644
--- a/kig/kfile/kfile_kig.cpp
+++ b/kig/kfile/kfile_kig.cpp
@@ -58,7 +58,7 @@ bool KigPlugin::readInfo( KFileMetaInfo& metainfo, uint /*what*/ )
TQString sfile = metainfo.path();
bool iscompressed = false;
TQFile f( sfile );
- if ( !sfile.tqendsWith( ".kig", false ) )
+ if ( !sfile.endsWith( ".kig", false ) )
{
iscompressed = true;
@@ -67,7 +67,7 @@ bool KigPlugin::readInfo( KFileMetaInfo& metainfo, uint /*what*/ )
return false;
TQString tempname = sfile.section( '/', -1 );
- if ( sfile.tqendsWith( ".kigz", false ) )
+ if ( sfile.endsWith( ".kigz", false ) )
{
tempname.remove( TQRegExp( "\\.[Kk][Ii][Gg][Zz]$" ) );
}