[Konsole-devel] [Bug 114535] Using jis7 encoding causes the entire Konsole to freeze.
Robert Knight
robertknight at gmail.com
Thu Jul 19 18:11:28 UTC 2007
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.kde.org/show_bug.cgi?id=114535
------- Additional Comments From robertknight gmail com 2007-07-19 20:11 -------
After commenting-out the jis7 check in konsole.cpp in the latest KDE 3.5 branch with Qt 3.3.7 and KDE 3.5.6 libraries I was able to run Konsole and pick the jis7 encoding without problems. Is there anyone here who could double-check this with similar Qt,KDE versions and report on whether the problem still exists?
Index: konsole.cpp
===================================================================
--- konsole.cpp (revision 611528)
+++ konsole.cpp (working copy)
@ -869,12 +869,14 @
QString enc = KGlobal::charsets()->encodingForName(selectSetEncoding->currentText());
qtc = KGlobal::charsets()->codecForName(enc, found);
+# if 0
// BR114535 : Remove jis7 due to infinite loop.
if ( enc == "jis7" ) {
kdWarning()<<"Encoding Japanese (jis7) currently does not work! BR114535"<<endl;
qtc = QTextCodec::codecForLocale();
selectSetEncoding->setCurrentItem( 0 );
}
+#endif
if(!found)
{
More information about the konsole-devel
mailing list