Changeset 8986 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 06/21/08 14:56:03 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MStatusDisplay.h
r8962 r8986 172 172 // Name and title handling 173 173 virtual void SetName(const char *name) { fName = name; } 174 virtual void SetTitle(const char *title="") { fTitle = title; }174 virtual void SetTitle(const char *title="") { SetTitle(title, kTRUE); } 175 175 virtual const char *GetName() const { return fName.Data(); } 176 176 virtual const char *GetTitle() const { return fTitle.Data(); } 177 178 virtual void SetTitle(const char *title, Bool_t replace) 179 { 180 if (fTitle.IsNull() || replace) fTitle = title; 181 } 177 182 178 183 // Getter / display access
Note:
See TracChangeset
for help on using the changeset viewer.