Browse Source

https:// for stackoverflow.com

(cherry picked from commit 92266b35e91fb992cd15ece69065fc2bb81f2af7)

Conflicts:
	source/windows/VCLCommon.cpp

Source commit: 72660cf699c2f9fef008962aa34621913631d207
Martin Prikryl 8 years ago
parent
commit
1eeab358de

+ 1 - 1
source/core/Common.cpp

@@ -771,7 +771,7 @@ bool __fastcall IsReservedName(UnicodeString FileName)
 //---------------------------------------------------------------------------
 // ApiPath support functions
 // Inspired by
-// http://stackoverflow.com/q/18580945/850848
+// https://stackoverflow.com/q/18580945/850848
 // This can be reimplemented using PathCchCanonicalizeEx on Windows 8 and later
 enum PATH_PREFIX_TYPE
 {

+ 1 - 1
source/filezilla/TransferSocket.cpp

@@ -354,7 +354,7 @@ void CTransferSocket::ConfigureSocket()
 
   // Following post claims that TCP_NODELAY
   // has to be set before connect()
-  // http://stackoverflow.com/q/22583941/850848#25871250
+  // https://stackoverflow.com/q/22583941/850848#25871250
 
   int nodelay = GetOptionVal(OPTION_MPEXT_NODELAY);
   if (nodelay != 0)

+ 1 - 1
source/forms/Login.cpp

@@ -2570,7 +2570,7 @@ TTreeNode * __fastcall TLoginDialog::GetNextNode(TTreeNode * Node, bool Reverse)
     if (Node == NULL)
     {
       // GetLastNode
-      // http://stackoverflow.com/q/6257348/850848
+      // https://stackoverflow.com/q/6257348/850848
       Node = SessionTree->Items->GetFirstNode();
       TTreeNode * Node2 = Node;
       if (Node2 != NULL)

+ 1 - 1
source/packages/my/PasTools.pas

@@ -232,7 +232,7 @@ begin
 end;
 
 // WORKAROUND
-// http://stackoverflow.com/q/9410485/850848
+// https://stackoverflow.com/q/9410485/850848
 
 type
   TFormHelper = class helper for TCustomForm

+ 1 - 1
source/windows/Setup.cpp

@@ -671,7 +671,7 @@ void __fastcall LaunchAdvancedAssociationUI()
   if (IsWin10())
   {
     // WORKAROUND: On Windows 10, the IApplicationAssociationRegistrationUI::LaunchAdvancedAssociationUI does not work.
-    // http://stackoverflow.com/q/32178986/850848
+    // https://stackoverflow.com/q/32178986/850848
     // This approach (IOpenControlPanel::Open) works on Windows 7 too, but not on Windows Vista.
     IOpenControlPanel * OpenControlPanel;
 

+ 1 - 1
source/windows/TerminalManager.cpp

@@ -819,7 +819,7 @@ void __fastcall TTerminalManager::InitTaskbarButtonCreatedMessage()
 {
   // XE6 VCL already handles TaskbarButtonCreated, but does not call ChangeWindowMessageFilterEx.
   // So we keep our implementation.
-  // See also http://stackoverflow.com/q/14614823/850848#14618587
+  // See also https://stackoverflow.com/q/14614823/850848#14618587
   FTaskbarButtonCreatedMessage = RegisterWindowMessage(L"TaskbarButtonCreated");
 
   HINSTANCE User32Library = LoadLibrary(L"user32.dll");

+ 1 - 1
source/windows/Tools.cpp

@@ -936,7 +936,7 @@ static void __fastcall AcquireShutDownPrivileges()
   ZeroMemory(&Priv, sizeof(Priv));
   // Get the LUID for the shutdown privilege.
   // For hibernate/suspend, you need the same:
-  // http://stackoverflow.com/q/959589/850848
+  // https://stackoverflow.com/q/959589/850848
   Win32Check(LookupPrivilegeValue(NULL, SE_SHUTDOWN_NAME, &Priv.Privileges[0].Luid));
 
   Priv.PrivilegeCount = 1;  // one privilege to set

+ 1 - 1
source/windows/VCLCommon.cpp

@@ -689,7 +689,7 @@ void __fastcall ApplySystemSettingsOnControl(TControl * Control)
   }
 
   // WORKAROUND for lack of public API so mimicking Explorer-style mouse selection
-  // See http://stackoverflow.com/q/15750842/850848
+  // See https://stackoverflow.com/q/15750842/850848
   TCustomIEListView * IEListView = dynamic_cast<TCustomIEListView *>(Control);
   if (IEListView != NULL)
   {