mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2026-01-07 05:31:13 +01:00
small fixes for debugger without file
git-svn-id: trunk@2640 -
This commit is contained in:
parent
ff27e1d010
commit
6217fe6630
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
||||
17
images/sourceeditor/MultiBreakPoint.xpm
Normal file
17
images/sourceeditor/MultiBreakPoint.xpm
Normal file
@ -0,0 +1,17 @@
|
||||
/* XPM */
|
||||
static char * MultiBreakPoint_xpm[] = {
|
||||
"11 11 3 1",
|
||||
" c None",
|
||||
". c #000000",
|
||||
"+ c #FF0000",
|
||||
" ... ",
|
||||
" .+++. ",
|
||||
" .+++... ",
|
||||
".+++.+++. ",
|
||||
".++.+++++. ",
|
||||
".+.+++++++.",
|
||||
" ..+++++++.",
|
||||
" .+++++++.",
|
||||
" .+++++. ",
|
||||
" .+++. ",
|
||||
" ... "};
|
||||
@ -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
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user