summaryrefslogtreecommitdiffstats
path: root/kommander/editor/pixmapchooser.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-03-07 20:24:08 +0100
committerSlávek Banko <slavek.banko@axis.cz>2021-03-12 00:35:39 +0100
commit369d8455ac39aa9f5328b855bd5f456e3f384a63 (patch)
treeea0e74835bcc4c1ca9245316ffebf9a439828dd3 /kommander/editor/pixmapchooser.cpp
parenteea71ca9ecdfbd4682054a86cc9bbf954af94693 (diff)
downloadtdewebdev-369d8455ac39aa9f5328b855bd5f456e3f384a63.tar.gz
tdewebdev-369d8455ac39aa9f5328b855bd5f456e3f384a63.zip
Added controlled conversions to char* instead of automatic ascii conversions.
The definition of -UTQT_NO_ASCII_CAST is no longer needed. Signed-off-by: Slávek Banko <slavek.banko@axis.cz> (cherry picked from commit 70defe5e6d9498c5c6011eee50c4dc506abebd61)
Diffstat (limited to 'kommander/editor/pixmapchooser.cpp')
-rw-r--r--kommander/editor/pixmapchooser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/kommander/editor/pixmapchooser.cpp b/kommander/editor/pixmapchooser.cpp
index 224bbe72..7a2bd85e 100644
--- a/kommander/editor/pixmapchooser.cpp
+++ b/kommander/editor/pixmapchooser.cpp
@@ -1016,7 +1016,7 @@ ImageIconProvider::~ImageIconProvider()
const TQPixmap * ImageIconProvider::pixmap( const TQFileInfo &fi )
{
TQString ext = fi.extension().upper();
- if ( fmts.contains( ext ) ) {
+ if ( fmts.contains( ext.utf8() ) ) {
return &imagepm;
} else {
return TQFileIconProvider::pixmap( fi );