Index: trunk/MagicSoft/Cosy/gui/MGCosy.cc
===================================================================
--- trunk/MagicSoft/Cosy/gui/MGCosy.cc	(revision 2388)
+++ trunk/MagicSoft/Cosy/gui/MGCosy.cc	(revision 2514)
@@ -215,9 +215,9 @@
 
     fRaEst  = new TGLabel(f, "+000h 00.0m");
-    fDecEst = new TGLabel(f, "+000h 00.0m");
+    fDecEst = new TGLabel(f, "+000d 00.0m");
     fRaSoll = new TGLabel(f, "+000h 00.0m");
-    fDecSoll = new TGLabel(f, "+000h 00.0m");
-    fZdSoll = new TGLabel(f, "+000h 00.0m");
-    fAzSoll = new TGLabel(f, "+000h 00.0m");
+    fDecSoll = new TGLabel(f, "+000d 00.0m");
+    fZdSoll = new TGLabel(f, "+000d 00.0m");
+    fAzSoll = new TGLabel(f, "+000d 00.0m");
     fRaEst->SetTextJustify(kTextRight);
     fDecEst->SetTextJustify(kTextRight);
@@ -931,5 +931,5 @@
         deci = (int)test.Dec();
         //sprintf(text, "%c%dd %.1fm", rd.Dec()<0?'-':'+' , abs((int)rd.Dec()), 0.1*(abs((int)test.Dec())%600));
-        sprintf(text, "%c%dh %.1fm", sd, d, dm);
+        sprintf(text, "%c%dd %.1fm", sd, d, dm);
         fDecEst->SetText(new TGString(text));
     }
@@ -961,5 +961,5 @@
         decs = (int)test.Dec();
         //sprintf(text, "%c%dd %.1fm", radec.Dec()<0?'-':'+' , abs((int)radec.Dec()), 0.1*(abs((int)test.Dec())%600));
-        sprintf(text, "%c%dh %.1fm", sd, d, dm);
+        sprintf(text, "%c%dd %.1fm", sd, d, dm);
         fDecSoll->SetText(new TGString(text));
     }
Index: trunk/MagicSoft/Cosy/gui/MGImage.cc
===================================================================
--- trunk/MagicSoft/Cosy/gui/MGImage.cc	(revision 2388)
+++ trunk/MagicSoft/Cosy/gui/MGImage.cc	(revision 2514)
@@ -96,5 +96,5 @@
 }
 
-void MGImage::DrawImg32(char *d, char *s, char *e)
+void MGImage::DrawImg24(char *d, char *s, char *e)
 {
     // d=destination, s=source, e=end
@@ -110,5 +110,5 @@
 }
 
-void MGImage::DrawColImg32(char *d, char *s1, char *s2, char *e)
+void MGImage::DrawColImg24(char *d, char *s1, char *s2, char *e)
 {
     // d=destination, s1=source1, s2=source2, e=end
@@ -147,6 +147,6 @@
         DrawImg16((unsigned short*)fImage->data, (char*)buffer, (char*)(buffer+fWidth*fHeight));
         break;
-    case 32:
-        DrawImg32(fImage->data, (char*)buffer, (char*)(buffer+fWidth*fHeight));
+    case 24:
+        DrawImg24(fImage->data, (char*)buffer, (char*)(buffer+fWidth*fHeight));
         break;
     default:
@@ -179,5 +179,5 @@
     switch (gVirtualX->GetDepth())
     {
-    case 32:
+    case 24:
         DrawColImg32(fImage->data, (char*)gbuf, (char*)cbuf, (char*)(gbuf+fWidth*fHeight));
         break;
Index: trunk/MagicSoft/Cosy/gui/MGImage.h
===================================================================
--- trunk/MagicSoft/Cosy/gui/MGImage.h	(revision 2388)
+++ trunk/MagicSoft/Cosy/gui/MGImage.h	(revision 2514)
@@ -36,6 +36,6 @@
 
     void DrawImg16(unsigned short *d, char *s, char *e);
-    void DrawImg32(char *d, char *s, char *e);
-    void DrawColImg32(char *d, char *s1, char *s2, char *e);
+    void DrawImg24(char *d, char *s, char *e);
+    void DrawColImg24(char *d, char *s1, char *s2, char *e);
 
 public:
