diff options
Diffstat (limited to 'kio/kfile/images.h')
-rw-r--r-- | kio/kfile/images.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kio/kfile/images.h b/kio/kfile/images.h index 62e42afeb..f544e2f0a 100644 --- a/kio/kfile/images.h +++ b/kio/kfile/images.h @@ -248,7 +248,7 @@ static struct EmbedImage { static const TQImage& qembed_findImage( const TQString& name ) { static TQDict<TQImage> dict; - TQImage* img = dict.tqfind( name ); + TQImage* img = dict.find( name ); if ( !img ) { for ( int i = 0; embed_image_vec[i].data; i++ ) { if ( strcmp(embed_image_vec[i].name, name.latin1()) == 0 ) { |