small fixes for debugger without file

git-svn-id: trunk@2640 -
This commit is contained in:
mattias 2002-08-17 23:41:32 +00:00
parent ff27e1d010
commit 6217fe6630
3 changed files with 23 additions and 2 deletions

1
.gitattributes vendored
View File

@ -450,6 +450,7 @@ images/sourceeditor/InactiveBreakPoint.ico -text svneol=unset#image/x-icon
images/sourceeditor/InactiveBreakPoint.xpm -text svneol=native#image/x-xpixmap
images/sourceeditor/InvalidBreakPoint.ico -text svneol=unset#image/x-icon
images/sourceeditor/InvalidBreakPoint.xpm -text svneol=native#image/x-xpixmap
images/sourceeditor/MultiBreakPoint.xpm -text svneol=native#image/x-xpixmap
images/sourceeditor/bookmark0.ico -text svneol=unset#image/x-icon
images/sourceeditor/bookmark0.xpm -text svneol=native#image/x-xpixmap
images/sourceeditor/bookmark1.ico -text svneol=unset#image/x-icon

View File

@ -0,0 +1,17 @@
/* XPM */
static char * MultiBreakPoint_xpm[] = {
"11 11 3 1",
" c None",
". c #000000",
"+ c #FF0000",
" ... ",
" .+++. ",
" .+++... ",
".+++.+++. ",
".++.+++++. ",
".+.+++++++.",
" ..+++++++.",
" .+++++++.",
" .+++++. ",
" .+++. ",
" ... "};

View File

@ -64,9 +64,9 @@ type
TGDIColorFlags = set of TGDIColorFlag;
TGDIColor = record
ColorRef : TColor; //Color passed - can be a SYSCOLOR or RGB
ColorRef : TColorRef; //Color passed - can be a SYSCOLOR or RGB
ColorFlags: TGDIColorFlags;
Color : TGDKColor; //Actual GDK Color(If any) for use with GC's
Color: TGDKColor; //Actual GDK Color(If any) for use with GC's
Colormap : PGDKColormap; //Colormap GDKColor was allocated with
end;
PGDIColor = ^TGDIColor;
@ -436,6 +436,9 @@ end.
{ =============================================================================
$Log$
Revision 1.37 2003/05/27 15:04:00 mattias
small fixes for debugger without file
Revision 1.36 2003/05/19 08:16:33 mattias
fixed allocation of dc backcolor