Skip to content

Commit afe6efe

Browse files
committed
chore: rename function, change log level.
Signed-off-by: Camila Ayres <[email protected]>
1 parent cbe901a commit afe6efe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/gui/accountmanager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()) {

src/libsync/clientproxy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

src/libsync/clientproxy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ class OWNCLOUDSYNC_EXPORT ClientProxy : public QObject
4646

4747
public slots:
4848
void setupQtProxyFromConfig();
49-
void setupQtProxyFromSettings(const QSettings &settings);
49+
void saveProxyConfigurationFromSettings(const QSettings &settings);
5050
};
5151

5252
class OWNCLOUDSYNC_EXPORT SystemProxyRunnable : public QObject, public QRunnable

0 commit comments

Comments
 (0)