Changeset 7826 for trunk/MagicSoft
- Timestamp:
- 07/30/06 19:17:30 (18 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7825 r7826 39 39 - calculate kB and MB correctly by dividing by 1000 instead of 40 40 1024 (would be kiB and MiB) 41 - removed some unused parameters from function declaration 42 - fixed some warnings about local overwrites of variable names 43 - fixed a deprecated conversion from string constant to `char* 41 44 42 45 -
trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc
r7825 r7826 484 484 fList->Add(layc); 485 485 486 c har *txt = "<< Thomas Bretz >>";486 const char *txt = "<< Thomas Bretz >>"; 487 487 l = new TGLabel(f, txt); 488 488 fList->Add(l); … … 970 970 // The 'connection' is done in AddTab 971 971 // 972 void MStatusDisplay::EventInfo(Int_t event, Int_t px, Int_t py, TObject *selected)972 void MStatusDisplay::EventInfo(Int_t /*event*/, Int_t px, Int_t py, TObject *selected) 973 973 { 974 974 // Writes the event status in the status bar parts … … 1764 1764 // Process the kC_TEXTVIEW messages 1765 1765 // 1766 Bool_t MStatusDisplay::ProcessMessageTextview(Long_t submsg, Long_t mp1, Long_t mp2)1766 Bool_t MStatusDisplay::ProcessMessageTextview(Long_t /*submsg*/, Long_t /*mp1*/, Long_t /*mp2*/) 1767 1767 { 1768 1768 // kC_TEXTVIEW, kTXT_ISMARKED, widget id, [true|false] // … … 2122 2122 // Writes the contents of a MStatusDisplay to a file. 2123 2123 // 2124 Int_t MStatusDisplay::Write(Int_t num, const char *name, Int_t option, Int_t bufsize) const2124 Int_t MStatusDisplay::Write(Int_t num, const char *name, Int_t /*option*/, Int_t /*bufsize*/) const 2125 2125 { 2126 2126 if (!gFile)
Note:
See TracChangeset
for help on using the changeset viewer.