Index: trunk/FACT++/gui/QCameraWidget.cc
===================================================================
--- trunk/FACT++/gui/QCameraWidget.cc	(revision 12053)
+++ trunk/FACT++/gui/QCameraWidget.cc	(revision 12054)
@@ -2,4 +2,6 @@
 #include <sstream>
 #include <iostream>
+
+using namespace std;
 
     QCameraWidget::QCameraWidget(QWidget *pparent) : BasicGlCamera(pparent)
Index: trunk/FACT++/gui/QCameraWidget.h
===================================================================
--- trunk/FACT++/gui/QCameraWidget.h	(revision 12053)
+++ trunk/FACT++/gui/QCameraWidget.h	(revision 12054)
@@ -6,22 +6,19 @@
 #include <set>
 
-
-using namespace std;
-
 class QCameraWidget : public BasicGlCamera
 {
     Q_OBJECT
 
-    typedef pair<double, double> Position;
-    typedef vector<Position> Positions;
+    typedef std::pair<double, double> Position;
+    typedef std::vector<Position> Positions;
 
     //FIXME this variable seems to be deprecated
     Positions fGeom;
 
-    vector<bool> fBold;
-    vector<bool> fEnable;
+    std::vector<bool> fBold;
+    std::vector<bool> fEnable;
 
-    vector<int> highlightedPatches;
-    vector<int> highlightedPixels;
+    std::vector<int> highlightedPatches;
+    std::vector<int> highlightedPixels;
 
 
@@ -50,6 +47,6 @@
      char *GetObjectInfo(int px, int py);
 
-     void SetData(const valarray<double> &ddata);
-     void SetData(const valarray<float> &ddata);
+     void SetData(const std::valarray<double> &ddata);
+     void SetData(const std::valarray<float> &ddata);
 
 
