Index: trunk/BNC/rinex/reqcedit.cpp
===================================================================
--- trunk/BNC/rinex/reqcedit.cpp	(revision 4220)
+++ trunk/BNC/rinex/reqcedit.cpp	(revision 4221)
@@ -302,5 +302,15 @@
   t_rnxNavFile outNavFile(_outNavFileName, t_rnxNavFile::output);
   outNavFile.setVersion(_rnxVersion);
-  outNavFile.writeHeader();
+  bncSettings settings;
+  QMap<QString, QString> txtMap;
+  QString runBy = settings.value("reqcRunBy").toString();
+  if (!runBy.isEmpty()) {
+    txtMap["RUN BY"]  = runBy;
+  }
+  QString comment = settings.value("reqcComment").toString();
+  if (!comment.isEmpty()) {
+    txtMap["COMMENT"]  = comment;
+  }
+  outNavFile.writeHeader(&txtMap);
 
   // Loop over all ephemerides
