Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix proxy basic authentication setting
- Loading branch information
Showing
with
2 additions
and
2 deletions.
-
+2
−2
src/app/qgsoptions.cpp
|
@@ -342,8 +342,8 @@ QgsOptions::QgsOptions( QWidget *parent, Qt::WindowFlags fl, const QList<QgsOpti |
|
|
leProxyHost->setText( mSettings->value( QStringLiteral( "proxy/proxyHost" ), "" ).toString() ); |
|
|
leProxyPort->setText( mSettings->value( QStringLiteral( "proxy/proxyPort" ), "" ).toString() ); |
|
|
|
|
|
mAuthSettings->setPassword( mSettings->value( QStringLiteral( "proxy/proxyUser" ), "" ).toString() ); |
|
|
mAuthSettings->setUsername( mSettings->value( QStringLiteral( "proxy/proxyPassword" ), "" ).toString() ); |
|
|
mAuthSettings->setPassword( mSettings->value( QStringLiteral( "proxy/proxyPassword" ), "" ).toString() ); |
|
|
mAuthSettings->setUsername( mSettings->value( QStringLiteral( "proxy/proxyUser" ), "" ).toString() ); |
|
|
|
|
|
//available proxy types |
|
|
mProxyTypeComboBox->insertItem( 0, QStringLiteral( "DefaultProxy" ) ); |
|
|