mirror of
https://github.com/KDE/konsole.git
synced 2026-01-25 15:38:57 -05:00
Port to KF5/Qt5
TerminalDisplayAccessible is disabled for Qt5 currently since I don't have any experience with accessible stuff and it is more complicated than just changing a few includes REVIEW: 111937
This commit is contained in:
@@ -90,7 +90,7 @@ KeyboardTranslatorReader::KeyboardTranslatorReader(QIODevice* source)
|
||||
while (_description.isEmpty() && !source->atEnd()) {
|
||||
QList<Token> tokens = tokenize(QString::fromLocal8Bit(source->readLine()));
|
||||
if (!tokens.isEmpty() && tokens.first().type == Token::TitleKeyword)
|
||||
_description = i18n(tokens[1].text.toUtf8());
|
||||
_description = i18n(tokens[1].text.toUtf8().constData());
|
||||
}
|
||||
// read first entry (if any)
|
||||
readNext();
|
||||
|
||||
Reference in New Issue
Block a user