Index: /trunk/BNC/src/rinex/reqcanalyze.cpp
===================================================================
--- /trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 8559)
+++ /trunk/BNC/src/rinex/reqcanalyze.cpp	(revision 8560)
@@ -534,4 +534,8 @@
 void t_reqcAnalyze::preparePlotData(const t_rnxObsFile* obsFile) {
 
+  if (!BNC_CORE->GUIenabled()) {
+    return ;
+  }
+
   QVector<t_skyPlotData> skyPlotDataMP;
   QVector<t_skyPlotData> skyPlotDataSN;
@@ -572,11 +576,9 @@
   // Show the plots
   // --------------
-  if (BNC_CORE->GUIenabled()) {
-    QFileInfo  fileInfo(obsFile->fileName());
-    QByteArray title = fileInfo.fileName().toLatin1();
-    emit dspSkyPlot(obsFile->fileName(), skyPlotDataMP, "Meters",  2.0);
-    emit dspSkyPlot(obsFile->fileName(), skyPlotDataSN, "dbHz",   54.0);
-    emit dspAvailPlot(obsFile->fileName(), title);
-  }
+  QFileInfo  fileInfo(obsFile->fileName());
+  QByteArray title = fileInfo.fileName().toLatin1();
+  emit dspSkyPlot(obsFile->fileName(), skyPlotDataMP, "Meters",  2.0);
+  emit dspSkyPlot(obsFile->fileName(), skyPlotDataSN, "dbHz",   54.0);
+  emit dspAvailPlot(obsFile->fileName(), title);
 }
 
