diff --git a/localization/rssguard_cs.ts b/localization/rssguard_cs.ts index b3d940ed6..99517df28 100644 --- a/localization/rssguard_cs.ts +++ b/localization/rssguard_cs.ts @@ -681,12 +681,6 @@ Critical settings were changed Kritická nastavení změněna - - List of changes: - %1. - Seznam změn: - %1. - Problem with application restart Problém s restartováním aplikace @@ -703,12 +697,6 @@ Some critical settings are not set. You must fix these settings in order confirm new settings. Některá kritická nastavení nejsou vyplněna. Musíte je opravit než bude možné dialog potvrdit. - - List of errors: - %1. - Seznam chyb: - %1. - Feeds Kanály @@ -770,23 +758,33 @@ - u2022 some keyboard shortcuts are not unique + some keyboard shortcuts are not unique - u2022 external browser is not set + external browser is not set - u2022 language changed + List of errors: +%1. - u2022 icon theme changed + List of changes: +%1. - u2022 skin changed + language changed + + + + icon theme changed + + + + skin changed diff --git a/localization/rssguard_en.ts b/localization/rssguard_en.ts index c0fa7e70e..62e1384ba 100644 --- a/localization/rssguard_en.ts +++ b/localization/rssguard_en.ts @@ -675,11 +675,6 @@ Critical settings were changed - - List of changes: - %1. - - Problem with application restart @@ -696,11 +691,6 @@ Some critical settings are not set. You must fix these settings in order confirm new settings. - - List of errors: - %1. - - Feeds @@ -762,23 +752,33 @@ - u2022 some keyboard shortcuts are not unique + some keyboard shortcuts are not unique - u2022 external browser is not set + external browser is not set - u2022 language changed + List of errors: +%1. - u2022 icon theme changed + List of changes: +%1. - u2022 skin changed + language changed + + + + icon theme changed + + + + skin changed diff --git a/localization/rssguard_nl.ts b/localization/rssguard_nl.ts index fcf6df189..94a6f3167 100644 --- a/localization/rssguard_nl.ts +++ b/localization/rssguard_nl.ts @@ -681,12 +681,6 @@ Critical settings were changed Kritieke instellingen zijn veranderd - - List of changes: - %1. - Lijst van veranderingen/l -%1. - Problem with application restart Probleem met programma herstart @@ -703,12 +697,6 @@ Some critical settings are not set. You must fix these settings in order confirm new settings. Sommige kritieke instellingen zijn niet instelbaar. Je moet deze nieuwe instellingen bevestigen om op te lossen. - - List of errors: - %1. - lijst van fouten: - %1. - Feeds @@ -770,23 +758,33 @@ - u2022 some keyboard shortcuts are not unique + some keyboard shortcuts are not unique - u2022 external browser is not set + external browser is not set - u2022 language changed + List of errors: +%1. - u2022 icon theme changed + List of changes: +%1. - u2022 skin changed + language changed + + + + icon theme changed + + + + skin changed diff --git a/src/gui/messagesview.cpp b/src/gui/messagesview.cpp index 5786560a7..d77934c68 100644 --- a/src/gui/messagesview.cpp +++ b/src/gui/messagesview.cpp @@ -213,7 +213,6 @@ void MessagesView::openSelectedSourceArticlesExternally() { foreach (const QModelIndex &index, selectionModel()->selectedRows()) { QString link = m_sourceModel->messageAt(m_proxyModel->mapToSource(index).row()).m_url; - QProcess::execute(browser, QStringList() << arguments.arg(link)); } } diff --git a/src/gui/webbrowser.cpp b/src/gui/webbrowser.cpp index e64c7041e..987892e09 100644 --- a/src/gui/webbrowser.cpp +++ b/src/gui/webbrowser.cpp @@ -77,9 +77,6 @@ WebBrowser::WebBrowser(QWidget *parent) createConnections(); initializeZoomWidget(); - - // NOTE: Not needed here probably. - //setupIcons(); } void WebBrowser::initializeZoomWidget() { @@ -153,8 +150,6 @@ void WebBrowser::onTitleChanged(const QString &new_title) { else { emit titleChanged(m_index, new_title); } - - emit iconChanged(m_index, QIcon()); } void WebBrowser::updateUrl(const QUrl &url) {