IDE: checked compiler warnings, clean up

git-svn-id: trunk@48234 -
This commit is contained in:
mattias 2015-03-10 15:50:16 +00:00
parent 982ab43ff6
commit 7ed7fbad89
2 changed files with 2 additions and 9 deletions

View File

@ -200,7 +200,7 @@ type
// Dialog routines
procedure CreateDebugDialog(Sender: TObject; aFormName: string;
var AForm: TCustomForm; DoDisableAutoSizing: boolean); virtual;
var AForm: TCustomForm; DoDisableAutoSizing: boolean); virtual; abstract;
procedure ViewDebugDialog(const ADialogType: TDebugDialogType;
BringToFront: Boolean = True; Show: Boolean = true;
DoDisableAutoSizing: boolean = false); virtual; abstract;
@ -239,14 +239,6 @@ var
implementation
{ TBaseDebugManager }
procedure TBaseDebugManager.CreateDebugDialog(Sender: TObject; aFormName: string;
var AForm: TCustomForm; DoDisableAutoSizing: boolean);
begin
//
end;
{ TDebuggerOptions }
class function TDebuggerOptions.GetGroupCaption: string;

View File

@ -845,6 +845,7 @@ begin
if i = 1 then exit(AddError('Expected Command, but found "'+UTF8Copy(FText,1,1)+'"'));
s := Copy(FText, 1, i-1);
j:=0;
if not IdentToEditorCommand(s, j) then exit(AddError('Unknown Command "'+s+'"'));
FEventCommand := j;
FEventName := s;