Changeset 1105 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 12/11/01 10:13:01 (23 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MGGroupFrame.cc
r1080 r1105 54 54 MGGroupFrame::MGGroupFrame(MGTask *task, 55 55 const TGWindow *p, TGString *title, 56 UInt_t options = kVerticalFrame, 57 GContext_t norm=GetDefaultGC()(), 58 FontStruct_t font=GetDefaultFontStruct(), 59 ULong_t back=GetDefaultFrameBackground()) 56 UInt_t options, GContext_t norm, 57 FontStruct_t font, ULong_t back) 60 58 : TGGroupFrame(p, title, options, norm, font, back), TGWidget(-1) 61 59 { … … 77 75 MGGroupFrame::MGGroupFrame(MGTask *task, 78 76 const TGWindow *p, const char *title, 79 UInt_t options = kVerticalFrame, 80 GContext_t norm=GetDefaultGC()(), 81 FontStruct_t font=GetDefaultFontStruct(), 82 ULong_t back=GetDefaultFrameBackground()) 77 UInt_t options, GContext_t norm, 78 FontStruct_t font, ULong_t back) 83 79 : TGGroupFrame(p, title, options, norm, font, back), TGWidget(-1) 84 80 { -
trunk/MagicSoft/Mars/mbase/MGList.cc
r1086 r1105 124 124 // check whether Widget id is already existing in the list 125 125 // 126 return (Bool_t)FindWidget(id);126 return FindWidget(id) ? kTRUE : kFALSE; 127 127 } 128 128
Note:
See TracChangeset
for help on using the changeset viewer.