Ignore:
Timestamp:
07/11/06 20:45:10 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy/gui
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/gui/MGCoordinate.cc

    r1531 r7787  
    9494        label = new TGLabel(this, deg);
    9595        label->SetTextJustify(kTextLeft);
    96         label->Move(39, 26);
     96        label->Move(37, 29);
    9797        label->MapWindow();
    9898        fList->Add(label);
     
    100100        label = new TGLabel(this, min);
    101101        label->SetTextJustify(kTextLeft);
    102         label->Move(73, 26);
     102        label->Move(71, 29);
    103103        label->MapWindow();
    104104        fList->Add(label);
     
    106106        label = new TGLabel(this, sec);
    107107        label->SetTextJustify(kTextLeft);
    108         label->Move(107, 26);
     108        label->Move(107, 29);
    109109        label->MapWindow();
    110110        fList->Add(label);
  • trunk/MagicSoft/Cosy/gui/MGImage.cc

    r4076 r7787  
    9797    while (s<e)
    9898    {
    99         //      11111100    11111000      11111000
    100         *d++ = (*s&0xfc) | (*s&0xf8)<<5 | (*s&0xf8)<<11;
     99        //         11111100    11111000      11111000
     100        // *d++ = (*s&0xfc) | (*s&0xf8)<<5 | (*s&0xf8)<<11;
     101
     102        //      11111000       11111100       11111000
     103        *d++ = (*s&0xf8)<<8 | (*s&0xfc)<<3 | (*s>>3);
    101104        s++;
    102105    }
  • trunk/MagicSoft/Cosy/gui/Makefile

    r4865 r7787  
    2121
    2222INCLUDES = -I. -I.. -I../base -I../slalib -I../candrv -I../incl \
    23            -I../catalog -I../videodev -I../main -I../caos -I../tcpip
     23           -I../catalog -I../videodev -I../main -I../caos -I../tcpip \
     24           -I../mars
    2425
    2526# @code
Note: See TracChangeset for help on using the changeset viewer.