Skip to content

Commit 39fa78b

Browse files
committed
removed unnecessary debug msg, this is 0.14
1 parent 16ba1aa commit 39fa78b

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tomboy-ng/editbox.pas

+1-3
Original file line numberDiff line numberDiff line change
@@ -897,10 +897,8 @@ procedure TEditBoxForm.MakeAllLinks(const MText : ANSIString; const Term : ANSIS
897897
//EndP := Ptr + Offset-1;
898898
while Ptr < EndP do begin
899899
if Ptr^ = #13 then inc(NumbCR);
900-
debugln('ch ' + inttostr(ord(Ptr^)));
901900
inc(Ptr);
902901
end;
903-
debugln('Corrected for ' + inttostr(NumbCR) + ' #13s');
904902
{$endif}
905903
MakeLink(Term, Offset -1 -NumbCR, UTF8length(Term));
906904
Offset := UTF8Pos(Term, MText, Offset+1);
@@ -1265,7 +1263,7 @@ procedure TEditBoxForm.ImportNote(FileName: string);
12651263
CheckForLinks(); // 360mS
12661264
Loader.Free;
12671265
TimerHouseKeeping.Enabled := False; // we have changed note but no housekeeping reqired
1268-
debugln('Load Note=' + inttostr(gettickcount64() - T1) + 'mS');
1266+
// debugln('Load Note=' + inttostr(gettickcount64() - T1) + 'mS');
12691267
end;
12701268

12711269
procedure TEditBoxForm.MenuItemWriteClick(Sender: TObject);

0 commit comments

Comments
 (0)