Changeset 7826


Ignore:
Timestamp:
07/30/06 19:17:30 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7825 r7826  
    3939     - calculate kB and MB correctly by dividing by 1000 instead of
    4040       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*
    4144
    4245
  • trunk/MagicSoft/Mars/mbase/MStatusDisplay.cc

    r7825 r7826  
    484484    fList->Add(layc);
    485485
    486     char *txt = "<< Thomas Bretz >>";
     486    const char *txt = "<< Thomas Bretz >>";
    487487    l = new TGLabel(f, txt);
    488488    fList->Add(l);
     
    970970// The 'connection' is done in AddTab
    971971//
    972 void MStatusDisplay::EventInfo(Int_t event, Int_t px, Int_t py, TObject *selected)
     972void MStatusDisplay::EventInfo(Int_t /*event*/, Int_t px, Int_t py, TObject *selected)
    973973{
    974974    //  Writes the event status in the status bar parts
     
    17641764// Process the kC_TEXTVIEW messages
    17651765//
    1766 Bool_t MStatusDisplay::ProcessMessageTextview(Long_t submsg, Long_t mp1, Long_t mp2)
     1766Bool_t MStatusDisplay::ProcessMessageTextview(Long_t /*submsg*/, Long_t /*mp1*/, Long_t /*mp2*/)
    17671767{
    17681768    // kC_TEXTVIEW, kTXT_ISMARKED, widget id, [true|false]                  //
     
    21222122// Writes the contents of a MStatusDisplay to a file.
    21232123//
    2124 Int_t MStatusDisplay::Write(Int_t num, const char *name, Int_t option, Int_t bufsize) const
     2124Int_t MStatusDisplay::Write(Int_t num, const char *name, Int_t /*option*/, Int_t /*bufsize*/) const
    21252125{
    21262126    if (!gFile)
Note: See TracChangeset for help on using the changeset viewer.