Changeset 9581 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 05/05/10 11:05:52 (15 years ago)
- Location:
- trunk/MagicSoft/Mars/mbase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r9580 r9581 2416 2416 // Writes the contents of a MStatusDisplay to a file. 2417 2417 // 2418 Int_t MStatusDisplay::Write(Int_t num, const char *name, Int_t /*option*/, Int_t /*bufsize*/) const2418 Int_t MStatusDisplay::Write(Int_t num, const char *name, Option_t *opt) const 2419 2419 { 2420 2420 if (!gFile) … … 2457 2457 TNamed named("Title", fTitle.Data()); 2458 2458 2459 if (TString(opt ion)=="plain")2459 if (TString(opt)=="plain") 2460 2460 { 2461 2461 // Get canvas range to store -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.h
r9578 r9581 289 289 290 290 // Root I/O 291 Int_t Write(Int_t num, const char *name="MStatusDisplay", Int_t option=0, Int_t bufsize=0) const;291 Int_t Write(Int_t num, const char *name="MStatusDisplay", Option_t *opt="") const; 292 292 293 293 Int_t Read(const char *name, const char *tab); 294 294 Int_t Read(const char *name="MStatusDisplay") { return Read(name, 0); } 295 Int_t Write(const char *name="MStatusDisplay", Int_t option=0, Int_t bufsize=0) { return Write(-1, name , option, bufsize); }296 Int_t Write(const char *name="MStatusDisplay", Int_t option=0, Int_t bufsize=0) const { return Write(-1, name , option, bufsize); }295 Int_t Write(const char *name="MStatusDisplay", Int_t option=0, Int_t bufsize=0) { return Write(-1, name); } 296 Int_t Write(const char *name="MStatusDisplay", Int_t option=0, Int_t bufsize=0) const { return Write(-1, name); } 297 297 298 298 // Eventloop interface
Note:
See TracChangeset
for help on using the changeset viewer.