[Konsole-devel] [Bug 114535] Using jis7 encoding causes the entire Konsole to freeze.
Kurt V.Hindenburg
kurt.hindenburg at kdemail.net
Sun Nov 13 06:44:54 UTC 2005
------- 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 kurt.hindenburg kdemail net 2005-11-13 07:44 -------
SVN commit 480087 by hindenburg:
Remove jis7 from Encoding menu due to infinite loop.
CCBUG: 114535
M +3 -0 konsole.cpp
--- branches/KDE/3.5/kdebase/konsole/konsole/konsole.cpp #480086:480087
@ -632,6 +632,9 @
selectSetEncoding = new KSelectAction( i18n( "&Encoding" ), SmallIconSet( "charset" ), 0, this, SLOT(slotSetEncoding()), actions, "set_encoding" );
QStringList list = KGlobal::charsets()->descriptiveEncodingNames();
list.prepend( i18n( "Default" ) );
+
+ // BR114535 : Remove jis7 due to infinite loop.
+ list.remove( i18n( "Japanese ( jis7 )" ) );
selectSetEncoding->setItems(list);
selectSetEncoding->setCurrentItem (0);
selectSetEncoding->plug(m_options);
More information about the konsole-devel
mailing list