Changeset 1105 for trunk/MagicSoft


Ignore:
Timestamp:
12/11/01 10:13:01 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1104 r1105  
    22
    33 2001/12/11: Thomas Bretz
     4
     5   * mbase/MGGroupFrame.cc:
     6     - removed default arguments from source file
     7
     8
     9
     10 2001/12/10: Thomas Bretz
    411
    512   * mmc/*.hxx:
  • trunk/MagicSoft/Mars/mbase/MGGroupFrame.cc

    r1080 r1105  
    5454MGGroupFrame::MGGroupFrame(MGTask *task,
    5555                           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)
    6058    : TGGroupFrame(p, title, options, norm, font, back), TGWidget(-1)
    6159{
     
    7775MGGroupFrame::MGGroupFrame(MGTask *task,
    7876                           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)
    8379: TGGroupFrame(p, title, options, norm, font, back), TGWidget(-1)
    8480{
  • trunk/MagicSoft/Mars/mbase/MGList.cc

    r1086 r1105  
    124124    // check whether Widget id is already existing in the list
    125125    //
    126     return (Bool_t)FindWidget(id);
     126    return FindWidget(id) ? kTRUE : kFALSE;
    127127}
    128128
Note: See TracChangeset for help on using the changeset viewer.