Ticket #12533: 0001-Typo-correction.patch

File 0001-Typo-correction.patch, 1.5 KB (added by Anarchos, 8 years ago)
  • src/apps/webpositive/SettingsWindow.cpp

    From 42bfb4af1009407378107d7f96095202ca7b431a Mon Sep 17 00:00:00 2001
    From: Yourself <user@TSVNET97.localdomain>
    Date: Tue, 15 Dec 2015 13:27:53 +0000
    Subject: [PATCH 1/3] Typo correction
    
    ---
     src/apps/webpositive/SettingsWindow.cpp | 5 +++--
     1 file changed, 3 insertions(+), 2 deletions(-)
    
    diff --git a/src/apps/webpositive/SettingsWindow.cpp b/src/apps/webpositive/SettingsWindow.cpp
    index 8ac4940..46cea56 100644
    a b SettingsWindow::_CreateProxyPage(float spacing)  
    452452       fProxyPortControl->SetModificationMessage(
    453453               new BMessage(MSG_PROXY_PORT_CHANGED));
    454454       fProxyPortControl->SetText(
    455                fSettings->GetValue(kSettingsKeyProxyAddress, ""));
     455               fSettings->GetValue(kSettingsKeyProxyPort, ""));
    456456
    457457       fUseProxyAuthCheckBox = new BCheckBox("use authentication",
    458458               B_TRANSLATE("Proxy server requires authentication"),
    SettingsWindow::_ApplySettings()  
    674674       fSettings->SetValue(kSettingsKeyProxyAddress,
    675675               fProxyAddressControl->Text());
    676676       uint32 proxyPort = _ProxyPort();
    677        fSettings->SetValue(kSettingsKeyProxyPort, proxyPort);
     677       fSettings->SetValue(kSettingsKeyProxyPort,
     678               proxyPort);
    678679       fSettings->SetValue(kSettingsKeyUseProxyAuth,
    679680               fUseProxyAuthCheckBox->Value() == B_CONTROL_ON);
    680681       fSettings->SetValue(kSettingsKeyProxyUsername,