Changeset 7787 for trunk/MagicSoft/Cosy/gui
- Timestamp:
- 07/11/06 20:45:10 (18 years ago)
- Location:
- trunk/MagicSoft/Cosy/gui
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/gui/MGCoordinate.cc
r1531 r7787 94 94 label = new TGLabel(this, deg); 95 95 label->SetTextJustify(kTextLeft); 96 label->Move(3 9, 26);96 label->Move(37, 29); 97 97 label->MapWindow(); 98 98 fList->Add(label); … … 100 100 label = new TGLabel(this, min); 101 101 label->SetTextJustify(kTextLeft); 102 label->Move(7 3, 26);102 label->Move(71, 29); 103 103 label->MapWindow(); 104 104 fList->Add(label); … … 106 106 label = new TGLabel(this, sec); 107 107 label->SetTextJustify(kTextLeft); 108 label->Move(107, 2 6);108 label->Move(107, 29); 109 109 label->MapWindow(); 110 110 fList->Add(label); -
trunk/MagicSoft/Cosy/gui/MGImage.cc
r4076 r7787 97 97 while (s<e) 98 98 { 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); 101 104 s++; 102 105 } -
trunk/MagicSoft/Cosy/gui/Makefile
r4865 r7787 21 21 22 22 INCLUDES = -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 24 25 25 26 # @code
Note:
See TracChangeset
for help on using the changeset viewer.