Skip to content

Commit bd9c815

Browse files
committed
Remove broken URLs
Fixes #30
1 parent 731644b commit bd9c815

File tree

5 files changed

+5
-8
lines changed

5 files changed

+5
-8
lines changed

Src/Browser.UIOMgr.pas

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,6 @@ procedure TWBIOMgr.DocCompleteHandler(Sender: TObject; const pDisp: IDispatch;
187187
begin
188188
// Top level document has finished loading iff pDisp contains reference to
189189
// browser control's default interface.
190-
// See http://support.microsoft.com/kb/180366
191190
if pDisp = (fWB.DefaultInterface as IDispatch) then
192191
fDocLoaded := True;
193192
end;

Src/Res/Scripts/overflowXFix.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@
3636
}
3737
}
3838

39-
// Modification of function by Dustin Diaz:
40-
// http://www.dustindiaz.com/getelementsbyclass
39+
// Modification of function by Dustin Diaz
4140
function getElementsByClass(searchClass,node,tag) {
4241
var classElements = [];
4342
if (node == null) {

Src/UConsoleApp.pas

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,8 +368,8 @@ function TConsoleApp.StartProcess(const CmdLine, CurrentDir: string;
368368
// parameter.
369369
// See https://msdn.microsoft.com/en-us/library/ms682425.aspx for an
370370
// explanation of the problem: look under the lpCommandLine parameter section.
371-
// Remy Lebeau suggested the workaround used below in his post to
372-
// https://forums.codegear.com/thread.jspa?threadID=12826
371+
// Remy Lebeau suggested the workaround used below in a post on the old
372+
// CodeGear forums.
373373
SafeCmdLine := CmdLine;
374374
UniqueString(SafeCmdLine);
375375
// Set up creation flags: special flag used to determine type of environment

Src/UJavaScriptUtils.pas

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,7 @@ TJavaScript = record
6666
/// <returns>string. Required JavaScript code.</returns>
6767
/// <remarks>We sometimes need to load scripts into strings and then embed
6868
/// in HTML document since linking to external resource script doesn't seem
69-
/// to work in IE 9 (see bug report
70-
/// https://sourceforge.net/p/codesnip/bugs/84/).</remarks>
69+
/// to work in IE 9.</remarks>
7170
class function LoadScript(const ScriptName: string;
7271
const EncType: TEncodingType): string; static;
7372
end;

Src/USingleton.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Provides a base class for singleton objects along with a manager object that
99
* records instances of each type of singleton.
1010
*
11-
* Based on by code by Yoav Abrahami see <URL:http://bit.ly/cAH0HO>, updated to
11+
* Based on by code by Yoav Abrahami on the former Delphi3000.com, updated to
1212
* take advantage of modern Delphi features: generics, class vars, class
1313
* constructor and destructor etc. Further updated to use class types instead of
1414
* class names as dictionary keys following suggestions made in comments on my

0 commit comments

Comments
 (0)