Bläddra i källkod

https:// for stackoverflow.com

Source commit: 5d2ea7d20a5e5b92bf630944aca400829baae47f
Martin Prikryl 8 år sedan
förälder
incheckning
92266b35e9

+ 1 - 1
source/core/Common.cpp

@@ -844,7 +844,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

@@ -2590,7 +2590,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

@@ -374,7 +374,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

@@ -678,7 +678,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

@@ -811,7 +811,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

@@ -1041,7 +1041,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

@@ -896,7 +896,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
   if (IEListView != NULL)
   {
     // It should not be a problem to call the LVM_QUERYINTERFACE