You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
812 B
29 lines
812 B
Index: kio/kio/kremoteencoding.cpp
|
|
===================================================================
|
|
--- kio/kio/kremoteencoding.cpp.orig
|
|
+++ kio/kio/kremoteencoding.cpp
|
|
@@ -53,7 +53,7 @@ QCString KRemoteEncoding::encode(const Q
|
|
QCString result = codec->fromUnicode(name);
|
|
if (codec->toUnicode(result) != name)
|
|
return name.latin1();
|
|
-
|
|
+
|
|
return result;
|
|
}
|
|
|
|
@@ -80,11 +80,13 @@ void KRemoteEncoding::setEncoding(const
|
|
|
|
if (name)
|
|
codec = QTextCodec::codecForName(name);
|
|
+ else
|
|
+ codec = QTextCodec::codecForMib( 106 ); // fallback to UTF-8
|
|
|
|
if (codec == 0L)
|
|
codec = QTextCodec::codecForMib(1);
|
|
|
|
- kdDebug() << k_funcinfo << "setting encoding " << codec->name()
|
|
+ kdDebug() << k_funcinfo << "setting encoding " << codec->name()
|
|
<< " for name=" << name << endl;
|
|
}
|
|
|