[Igarden-commit] Garden/source/LayoutDB PaintElement.h, 1.15, 1.15.2.1 PaintElement.cpp, 1.26, 1.26
Status: Beta
Brought to you by:
jlbedell
|
From: Jeffrey B. <jlb...@us...> - 2007-01-28 23:18:50
|
Update of /cvsroot/igarden/Garden/source/LayoutDB In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv16532 Modified Files: Tag: Release_branch_v1 PaintElement.h PaintElement.cpp Log Message: Enforce ordering of different types of elements Index: PaintElement.h =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/PaintElement.h,v retrieving revision 1.15 retrieving revision 1.15.2.1 diff -C2 -d -r1.15 -r1.15.2.1 *** PaintElement.h 12 Oct 2005 22:04:37 -0000 1.15 --- PaintElement.h 28 Jan 2007 23:18:48 -0000 1.15.2.1 *************** *** 63,67 **** virtual bool CanPlaceElements(); virtual Element* Duplicate(Layer *toLayer); ! protected: --- 63,67 ---- virtual bool CanPlaceElements(); virtual Element* Duplicate(Layer *toLayer); ! virtual displayOrder_t GetDisplayOrder(); protected: Index: PaintElement.cpp =================================================================== RCS file: /cvsroot/igarden/Garden/source/LayoutDB/PaintElement.cpp,v retrieving revision 1.26 retrieving revision 1.26.2.1 diff -C2 -d -r1.26 -r1.26.2.1 *** PaintElement.cpp 22 Jun 2006 00:36:29 -0000 1.26 --- PaintElement.cpp 28 Jan 2007 23:18:48 -0000 1.26.2.1 *************** *** 441,443 **** --- 441,447 ---- } + displayOrder_t PaintElement::GetDisplayOrder() + { + return kOrderBackground; + } |