5fe6a3b2ce5a7099de38022ab8875d5651797780
tdreszer
  Fri Dec 16 11:41:01 2011 -0800
Just a changed name tree wide.  The 'compositeLevel' paramter to closestToHome cart functions was confusing.  What it means is the request is for a setting one step above the tdb passed in.  It is used for view level controls where the model tdb is a subtrack.  This checkin has NO functional affect.
diff --git src/hg/inc/netCart.h src/hg/inc/netCart.h
index 9a9a711..4d76181 100644
--- src/hg/inc/netCart.h
+++ src/hg/inc/netCart.h
@@ -1,34 +1,34 @@
 /* netCart.h - cart settings for net color and level options */
 
 #ifndef NETCART_H
 #define NETCART_H
 
 #include "chainCart.h"	/* borrowing CHROM_COLORS from chainCart */
 
 #define NET_COLOR	"netColor"
 /* suffix for variable identification, and trackDb variable name */
 #define GRAY_SCALE	"Gray scale"
 /* value on pull-down menu for color */
 #define TDB_GRAY_SCALE	"grayScale"
 /* trackDb option string value */
 
 #define NET_LEVEL	"netLevel"
 /* suffix for variable identification, and trackDb variable name */
 #define NET_LEVEL_0	"All levels"
 #define NET_LEVEL_1	"level 1 only"
 #define NET_LEVEL_2	"level 2 only"
 #define NET_LEVEL_3	"level 3 only"
 #define NET_LEVEL_4	"level 4 only"
 #define NET_LEVEL_5	"level 5 only"
 #define NET_LEVEL_6	"level 6 only"
 /* pull-down menu items */
 
 enum netColorEnum netFetchColorOption(struct cart *cart, struct trackDb *tdb,
-	boolean compositeLevel);
+	boolean parentLevel);
 /******	netColorOption - Chrom colors by default **************************/
 
 enum netLevelEnum netFetchLevelOption(struct cart *cart, struct trackDb *tdb,
-	boolean compositeLevel);
+	boolean parentLevel);
 /******	netLevelOption - net level 0 (All levels) by default    ***********/
 
 #endif /* NETCART_H */