diff options
-rw-r--r-- | desktop-widgets/mainwindow.ui | 9 | ||||
-rw-r--r-- | desktop-widgets/preferences/preferences_network.cpp | 5 | ||||
-rw-r--r-- | desktop-widgets/preferences/preferences_network.ui | 32 |
3 files changed, 0 insertions, 46 deletions
diff --git a/desktop-widgets/mainwindow.ui b/desktop-widgets/mainwindow.ui index 51d334969..5c7e20fad 100644 --- a/desktop-widgets/mainwindow.ui +++ b/desktop-widgets/mainwindow.ui @@ -125,7 +125,6 @@ </property> <addaction name="actionDownloadDC"/> <addaction name="actionImportDiveLog"/> - <addaction name="actionDownloadWeb"/> <addaction name="actionDivelogs_de"/> </widget> <widget class="QMenu" name="menu_Edit"> @@ -240,14 +239,6 @@ <string notr="true">Ctrl+D</string> </property> </action> - <action name="actionDownloadWeb"> - <property name="text"> - <string>Import &GPS data from Subsurface web service</string> - </property> - <property name="shortcut"> - <string notr="true">Ctrl+G</string> - </property> - </action> <action name="actionEditDeviceNames"> <property name="text"> <string>Edit device &names</string> diff --git a/desktop-widgets/preferences/preferences_network.cpp b/desktop-widgets/preferences/preferences_network.cpp index cb827f578..67b28c8f1 100644 --- a/desktop-widgets/preferences/preferences_network.cpp +++ b/desktop-widgets/preferences/preferences_network.cpp @@ -37,8 +37,6 @@ void PreferencesNetwork::refreshSettings() ui->cloud_storage_email->setText(prefs.cloud_storage_email); ui->cloud_storage_password->setText(prefs.cloud_storage_password); ui->save_password_local->setChecked(prefs.save_password_local); - ui->save_uid_local->setChecked(prefs.save_userid_local); - ui->default_uid->setText(QString(prefs.userid).toUpper()); updateCloudAuthenticationState(); } @@ -47,9 +45,6 @@ void PreferencesNetwork::syncSettings() auto cloud = qPrefCloudStorage::instance(); auto proxy = qPrefProxy::instance(); - cloud->set_userid(ui->default_uid->text().toUpper()); - cloud->set_save_userid_local(ui->save_uid_local->checkState()); - proxy->set_proxy_type(ui->proxyType->itemData(ui->proxyType->currentIndex()).toInt()); proxy->set_proxy_host(ui->proxyHost->text()); proxy->set_proxy_port(ui->proxyPort->value()); diff --git a/desktop-widgets/preferences/preferences_network.ui b/desktop-widgets/preferences/preferences_network.ui index 74f2548c1..7be1d3f4f 100644 --- a/desktop-widgets/preferences/preferences_network.ui +++ b/desktop-widgets/preferences/preferences_network.ui @@ -226,38 +226,6 @@ </widget> </item> <item> - <widget class="QGroupBox" name="groupBox_8"> - <property name="title"> - <string>Subsurface web service</string> - </property> - <layout class="QVBoxLayout" name="verticalLayout_7"> - <property name="spacing"> - <number>5</number> - </property> - <property name="margin"> - <number>5</number> - </property> - <item> - <widget class="QLabel" name="label_16"> - <property name="text"> - <string>Default user ID</string> - </property> - </widget> - </item> - <item> - <widget class="QLineEdit" name="default_uid"/> - </item> - <item> - <widget class="QCheckBox" name="save_uid_local"> - <property name="text"> - <string>Save user ID locally?</string> - </property> - </widget> - </item> - </layout> - </widget> - </item> - <item> <spacer name="verticalSpacer"> <property name="orientation"> <enum>Qt::Vertical</enum> |