go back to 03

This commit is contained in:
Basile Burg 2017-01-13 17:23:50 +01:00
parent f28bca7e61
commit 28fce8d535
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
12 changed files with 26 additions and 19 deletions

View File

@ -16,11 +16,11 @@ The options are applied in real time but are reversible until the green checker
- <img src="{%include icurl%}other/accept.png" class="tlbric"/>: Validates the modifications made to the current category, after what they can't be canceled anymore.
- <img src="{%include icurl%}other/cancel.png" class="tlbric"/>: Cancels and restores the previous state of the current category.
The options are persistent and saved in a distinct folder:
The options are persistent and saved in a specific folder:
- Linux:
**`/home/<your account>/.config/Coedit/`**.
- Windows:
**`?:\Users\<your account>\AppData\Roaming\Coedit\`**.
Each widget and software component save their own files with a self-explanatory name so it's easy to find and modify the file that matches a particular setting.
Each software component saves its own file with a self-explanatory name so it's easy to find and modify the file that matches a particular setting.

View File

@ -16,7 +16,7 @@ When no source file is opened but a project is, the widget displays the comments
When a source file has the focus and if it is not part of the project then the widget only displays the items located in this file.
Otherwise if a file has the focus and if it's part of the project then the whole project *todos* are displayed.
It's possible to jump to a particular item in its file with a double click.
It's possible to display the comment that matches to a particular item with a double click.
The items cannot be edited in the widget.
- <img src="{%include icurl%}arrow/arrow_update.png" class="tlbric"/>: Refreshes the list manually.

View File

@ -549,7 +549,7 @@
<CodeGeneration>
<SmartLinkUnit Value="True"/>
<Optimizations>
<OptimizationLevel Value="2"/>
<OptimizationLevel Value="3"/>
</Optimizations>
</CodeGeneration>
<Linking>

View File

@ -526,7 +526,7 @@ end;
procedure TCENativeProject.checkMissingFiles;
var
hasPatched: Boolean;
hasPatched: Boolean = false;
// either all the source files have moved or only the project file
procedure checkMissingAllSources;
var

View File

@ -442,7 +442,7 @@ var
i: Integer;
kind: Char;
item: string;
kindObj: TObject;
kindObj: TObject = nil;
begin
if not fAvailable then exit;
if not fServerListening then exit;

View File

@ -72,7 +72,8 @@ var
begin
init;
fDone := false;
fProc.Input.Write(value[1], value.length);
if value.isNotEmpty then
fProc.Input.Write(value[1], value.length);
fProc.Input.WriteByte(10);
while not fDone do
begin

View File

@ -1594,7 +1594,7 @@ end;
procedure TCEGdbWidget.startDebugging;
var
str: string;
str: string = '';
gdb: string;
i: integer;
b: TPersistentBreakPoint;
@ -1671,10 +1671,13 @@ begin
begin
b := fBreakPoints[i];
case b.kind of
bpkBreak: str := 'break ' + b.filename + ':' + intToStr(b.line) + #10;
bpkBreak:
begin
str := 'break ' + b.filename + ':' + intToStr(b.line) + #10;
fGdb.Input.Write(str[1], str.length);
end;
bpkWatch: {TODO-cGDB: put watchpoint from persistent};
end;
fGdb.Input.Write(str[1], str.length);
end;
gdbCommand('set disassembly-flavor ' + asmFlavorStr[fOptions.asmSyntax]);
// break on druntime exceptions + any throw'
@ -1845,7 +1848,8 @@ procedure parseGdbout(const str: string; var json: TJSONObject);
procedure parseProperty(node: TJSONObject; r: PStringRange);
var
idt,v: string;
idt: string = '';
v: string;
c: char;
begin
while true do
@ -2000,7 +2004,7 @@ var
arr: TJSONArray;
k: TListItem;
// common data
nme: string;
nme: string = '';
reason: string;
addr: PtrUint = 0;
func:string = '';

View File

@ -215,6 +215,7 @@ procedure THalsteadMetrics.Measure(document: TCESynMemo);
case fBugCountMethod of
pow23div3000: bgs := power(eff, 0.666667) / 3000;
div3000: bgs := eff / 3000;
else bgs := 0;
end;
bugsSum += bgs;

View File

@ -768,7 +768,7 @@ end;
procedure TCELibManEditorWidget.btnSelRootClick(Sender: TObject);
var
dir, outdir: string;
dir: string;
begin
if List.Selected.isNil then
exit;

View File

@ -108,6 +108,7 @@ end;
function TStringRange.init(const str: string): PStringRange;
begin
Result := @self;
ptr := nil;
pos := 0;
len := 0;
@ -116,7 +117,6 @@ begin
ptr := @str[1];
pos := 0;
len := length(str);
Result := @self;
end;
function TStringRange.init(const pchr: PChar; length: integer): PStringRange;

View File

@ -1440,7 +1440,7 @@ procedure TCESynMemo.ShowPhobosDoc;
var
str: string;
pth: string;
idt: string;
idt: string = '';
pos: integer;
len: integer;
sum: integer;
@ -2132,8 +2132,8 @@ var
i: integer;
p: integer;
c: integer = 0;
tok: PLexToken;
ton: PLexToken;
tok: PLexToken = nil;
ton: PLexToken = nil;
bet: boolean;
begin
p := SelStart;

View File

@ -398,7 +398,7 @@ end;
procedure TCETools.executeTool(tool: TCEToolItem);
var
txt: string;
txt: string = '';
begin
if tool.isNil then exit;
//
@ -412,7 +412,8 @@ begin
pikLine: txt := fDoc.LineText;
pikSelection: txt := fDoc.SelText;
end;
tool.fProcess.Input.Write(txt[1], txt.length);
if txt.isNotEmpty then
tool.fProcess.Input.Write(txt[1], txt.length);
tool.fProcess.CloseInput;
end;
end;