diff options
| author | Dawit Alemayehu <[email protected]> | 2012-01-18 13:30:54 -0500 |
|---|---|---|
| committer | Dawit Alemayehu <[email protected]> | 2012-01-18 16:23:18 -0500 |
| commit | 7dc1741277b1cb6b9cb1f3c0ee754b32ad347a87 (patch) | |
| tree | 1f088d85fb532a6b1d1107bd1c58cd88af43616c | |
| parent | 6a338f28e5cbdfb51aa391815453fe52c33ec590 (diff) | |
When populating the "Show Remote Encoding" menu, put the check mark besides
the correct saved remote encoding charset.
BUG: 186289
FIXED-IN: 4.8.0
REVIEW: 103730
| -rw-r--r-- | src/views/dolphinremoteencoding.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/views/dolphinremoteencoding.cpp b/src/views/dolphinremoteencoding.cpp index 8644f5cc2..375b3fd46 100644 --- a/src/views/dolphinremoteencoding.cpp +++ b/src/views/dolphinremoteencoding.cpp @@ -132,14 +132,14 @@ void DolphinRemoteEncoding::updateMenu() m_menu->menu()->actions().at(i)->setChecked(false); } - QString charset = KIO::SlaveConfig::self()->configData(m_currentURL.protocol(), - m_currentURL.host(), DATA_KEY); + QString charset = KGlobal::charsets()->descriptionForEncoding(KIO::SlaveConfig::self()->configData(m_currentURL.protocol(), + m_currentURL.host(), DATA_KEY)); if (!charset.isEmpty()) { int id = 0; bool isFound = false; for (int i = 0; i < m_encodingDescriptions.size(); i++) { - if (m_encodingDescriptions.at(i).contains(charset)) { + if (m_encodingDescriptions.at(i) == charset) { isFound = true; id = i; break; |
