Index: trunk/MagicSoft/Cosy/Changelog
===================================================================
--- trunk/MagicSoft/Cosy/Changelog	(revision 9550)
+++ trunk/MagicSoft/Cosy/Changelog	(revision 9551)
@@ -27,4 +27,17 @@
      - added new arguments to CELEST command
      - added new MOON command
+
+   * Makefile.conf.linux:
+     - removed Wconversion option
+
+   * caos/Leds.h, caos/Rings.h:
+     - overloaded some more Print members to get rid of some warnings
+
+   * gui/MGCoordinate.h:
+     - renamed an argument to get rid of a compiler warning
+
+   * tpoint/TPointGui.cc:
+     - include TMath
+     - return "" instead of 0 when TString is needed
 
 
Index: trunk/MagicSoft/Cosy/Makefile.conf.linux
===================================================================
--- trunk/MagicSoft/Cosy/Makefile.conf.linux	(revision 9550)
+++ trunk/MagicSoft/Cosy/Makefile.conf.linux	(revision 9551)
@@ -17,5 +17,5 @@
 #  ----->>>   settings for compilation
 #
-OPTIM    = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align -Wconversion
+OPTIM    = -O5 -Wall -fno-exceptions -fPIC -Wpointer-arith -Wcast-align
 OPTIMC   = $(OPTIM) -pedantic
 OPTIMCXX = $(OPTIM) -Woverloaded-virtual
Index: trunk/MagicSoft/Cosy/caos/Leds.h
===================================================================
--- trunk/MagicSoft/Cosy/caos/Leds.h	(revision 9550)
+++ trunk/MagicSoft/Cosy/caos/Leds.h	(revision 9551)
@@ -31,5 +31,9 @@
     void Print(Option_t *o1, Option_t *o2) const { TClonesArray::Print(o1, o2); }
 
-    ClassDef(Leds, 1)
+    void Print(const Option_t*, Int_t) const { }
+    void Print(const Option_t*, const char*, Int_t) const { }
+    void Print(const Option_t*, TPRegexp&, Int_t) const { }
+
+ClassDef(Leds, 1)
 };
 
Index: trunk/MagicSoft/Cosy/caos/Rings.h
===================================================================
--- trunk/MagicSoft/Cosy/caos/Rings.h	(revision 9550)
+++ trunk/MagicSoft/Cosy/caos/Rings.h	(revision 9551)
@@ -30,4 +30,8 @@
     void Print(Option_t *o1, Option_t *o2) const { TClonesArray::Print(o1, o2); }
 
+    void Print(const Option_t*, Int_t) const { }
+    void Print(const Option_t*, const char*, Int_t) const { }
+    void Print(const Option_t*, TPRegexp&, Int_t) const { }
+
     const Ring &operator()(int i) const { return *(Ring*)At(i); }
     Ring &operator()(int i) { return *(Ring*)At(i); }
Index: trunk/MagicSoft/Cosy/gui/MGCoordinate.h
===================================================================
--- trunk/MagicSoft/Cosy/gui/MGCoordinate.h	(revision 9550)
+++ trunk/MagicSoft/Cosy/gui/MGCoordinate.h	(revision 9551)
@@ -45,5 +45,5 @@
     void   Set(TGLabel     *label, const Int_t val);
     void   Set(TGTextEntry *entry, const Int_t val);
-    Bool_t Set(TGLabel     *label, Int_t &val, TGTextEntry *label);
+    Bool_t Set(TGLabel     *label, Int_t &val, TGTextEntry *entry);
 
 public:
Index: trunk/MagicSoft/Cosy/main/MMoonPointing.cc
===================================================================
--- trunk/MagicSoft/Cosy/main/MMoonPointing.cc	(revision 9550)
+++ trunk/MagicSoft/Cosy/main/MMoonPointing.cc	(revision 9551)
@@ -1,4 +1,5 @@
 #include "MMoonPointing.h"
 
+#include <TMath.h>
 #include <TFile.h>
 
Index: trunk/MagicSoft/Cosy/tpoint/TPointGui.cc
===================================================================
--- trunk/MagicSoft/Cosy/tpoint/TPointGui.cc	(revision 9550)
+++ trunk/MagicSoft/Cosy/tpoint/TPointGui.cc	(revision 9551)
@@ -18,4 +18,5 @@
 #include <TF1.h>
 #include <TH2.h>
+#include <TMath.h>
 #include <TMinuit.h>
 #include <TProfile.h>
@@ -607,5 +608,5 @@
 
     if (!fi.fFilename)
-        return 0;
+        return "";
 
     dir = fi.fIniDir;
