File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -268,7 +268,7 @@ bool AccountManager::restoreFromLegacySettings()
268268 configFile.setShowCallNotifications (settings->value (QLatin1String (showCallNotificationsC)).toBool ());
269269 configFile.setShowChatNotifications (settings->value (QLatin1String (showChatNotificationsC)).toBool ());
270270 configFile.setShowInExplorerNavigationPane (settings->value (QLatin1String (showInExplorerNavigationPaneC)).toBool ());
271- ClientProxy ().setupQtProxyFromSettings (*settings);
271+ ClientProxy ().saveProxyConfigurationFromSettings (*settings);
272272
273273 // Try to load the single account.
274274 if (!settings->childKeys ().isEmpty ()) {
Original file line number Diff line number Diff line change @@ -139,10 +139,10 @@ void ClientProxy::setupQtProxyFromConfig()
139139 }
140140}
141141
142- void ClientProxy::setupQtProxyFromSettings (const QSettings &settings)
142+ void ClientProxy::saveProxyConfigurationFromSettings (const QSettings &settings)
143143{
144144 if (settings.value (QLatin1String (proxyTypeC)).isNull ()) {
145- qCInfo (lcClientProxy) << " No Proxy settings found." ;
145+ qCDebug (lcClientProxy) << " No Proxy settings found." ;
146146 return ;
147147 }
148148
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ class OWNCLOUDSYNC_EXPORT ClientProxy : public QObject
4646
4747public slots:
4848 void setupQtProxyFromConfig ();
49- void setupQtProxyFromSettings (const QSettings &settings);
49+ void saveProxyConfigurationFromSettings (const QSettings &settings);
5050};
5151
5252class OWNCLOUDSYNC_EXPORT SystemProxyRunnable : public QObject, public QRunnable
You can’t perform that action at this time.
0 commit comments