Index: trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4299)
+++ trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 4300)
@@ -46,4 +46,5 @@
 #include "bncutils.h"
 #include "bncpostprocess.h"
+#include "graphwin.h"
 
 using namespace std;
@@ -62,4 +63,6 @@
 
   _currEpo = 0;
+
+  connect(this, SIGNAL(displayGraph()), this, SLOT(slotDisplayGraph()));
 }
 
@@ -75,4 +78,11 @@
   delete _log;     _log     = 0;
   delete _logFile; _logFile = 0;
+}
+
+//  
+////////////////////////////////////////////////////////////////////////////
+void t_reqcAnalyze::slotDisplayGraph() {
+  t_graphWin* graphWin = new t_graphWin(0);
+  graphWin->show();
 }
 
@@ -178,4 +188,6 @@
   }
 
+  emit displayGraph();
+
   _log->flush();
 }
Index: trunk/BNC/src/rinex/reqcanalyze.h
===================================================================
--- trunk/BNC/src/rinex/reqcanalyze.h	(revision 4299)
+++ trunk/BNC/src/rinex/reqcanalyze.h	(revision 4300)
@@ -43,6 +43,8 @@
  signals:
   void finished();
+  void displayGraph();
    
- public slots:
+ private slots:
+  void slotDisplayGraph();
 
  public:
