From: Leon W. <moo...@us...> - 2004-11-30 19:22:24
|
Update of /cvsroot/anyedit/AnyEditv2 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7938 Modified Files: ClassTree.cpp Log Message: - Changed the type of member functions and variables of classes that are Undefined to acces Public. Mainly because it looks better in the ClassView. - Swapped the private and protected icons. Private is a lock and Protected is a shield. Index: ClassTree.cpp =================================================================== RCS file: /cvsroot/anyedit/AnyEditv2/ClassTree.cpp,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** ClassTree.cpp 13 Oct 2004 23:15:45 -0000 1.13 --- ClassTree.cpp 30 Nov 2004 19:22:13 -0000 1.14 *************** *** 837,843 **** { case Class: - // Move to protected: - eAccess = Protected; - break; case Structure: case Union: --- 837,840 ---- *************** *** 857,864 **** break; case Private: ! nMultiply = 2; break; case Protected: ! nMultiply = 1; break; case Friend: --- 854,861 ---- break; case Private: ! nMultiply = 1; break; case Protected: ! nMultiply = 2; break; case Friend: |