178bbf97e38aabf33f8e83308872e9548cc642e8 braney Tue May 9 07:52:59 2017 -0700 add longLabel to track structure in hgComposite diff --git src/hg/hgComposite/hgComposite.c src/hg/hgComposite/hgComposite.c index f600b4b..4c89acc 100644 --- src/hg/hgComposite/hgComposite.c +++ src/hg/hgComposite/hgComposite.c @@ -38,30 +38,31 @@ #define hgsAddTrack hgCompEditPrefix "addTrack" #define hgsChangeGroup hgCompEditPrefix "changeGroup" #define hgsCurrentGroup hgCompEditPrefix "currentGroup" #define hgsCurrentComposite hgCompEditPrefix "currentComposite" #define hgsNewCompositeName hgCompEditPrefix "newCompositeName" #define hgsNewCompositeShortLabel hgCompEditPrefix "newCompositeShortLabel" #define hgsNewCompositeLongLabel hgCompEditPrefix "newCompositeLongLabel" //#define hgCompositePrefix "hgComposite_" #define hgDoNewComposite hgCompEditPrefix "doNewComposite" struct track { struct track *next; char *name; char *shortLabel; +char *longLabel; }; struct composite { struct composite *next; char *name; char *shortLabel; char *longLabel; struct track *trackList; }; /* Global Variables */ struct cart *cart; /* CGI and other variables */ struct hash *oldVars = NULL; /* The cart before new cgi stuff added. */