Index: trunk/BNC/reqcdlg.cpp
===================================================================
--- trunk/BNC/reqcdlg.cpp	(revision 4117)
+++ trunk/BNC/reqcdlg.cpp	(revision 4118)
@@ -63,4 +63,6 @@
   _reqcEndDateTime     = new QDateTimeEdit(this);
   _reqcEndDateTime->setDisplayFormat(timeFmtString);
+  _reqcRunBy           = new QLineEdit(this);
+  _reqcComment         = new QLineEdit(this);
   _reqcOldMarkerName   = new QLineEdit(this);
   _reqcNewMarkerName   = new QLineEdit(this);
@@ -101,4 +103,6 @@
     _reqcEndDateTime->setDateTime(settings.value("reqcEndDateTime").toDateTime());
   }
+  _reqcRunBy->setText(settings.value("reqcRunBy").toString());
+  _reqcComment->setText(settings.value("reqcComment").toString());
   _reqcOldMarkerName->setText(settings.value("reqcOldMarkerName").toString());
   _reqcNewMarkerName->setText(settings.value("reqcNewMarkerName").toString());
@@ -122,4 +126,10 @@
   grid->addWidget(new QLabel("  End"),         ir, 3);
   grid->addWidget(_reqcEndDateTime,            ir, 4);
+  ++ir;
+  grid->addWidget(new QLabel("Run By"),        ir, 0);
+  grid->addWidget(_reqcRunBy,                  ir, 1, 1, 2);
+  ++ir;
+  grid->addWidget(new QLabel("Comment"),       ir, 0);
+  grid->addWidget(_reqcComment,                ir, 1, 1, 4);
   ++ir;
   grid->addWidget(new QLabel("Old"),           ir, 1, 1, 2, Qt::AlignCenter);
@@ -220,4 +230,6 @@
   settings.setValue("reqcStartDateTime"  , _reqcStartDateTime->dateTime().toString(Qt::ISODate)); 
   settings.setValue("reqcEndDateTime"    , _reqcEndDateTime->dateTime().toString(Qt::ISODate));   
+  settings.setValue("reqcRunBy"          , _reqcRunBy->text()); 
+  settings.setValue("reqcComment"        , _reqcComment->text()); 
   settings.setValue("reqcOldMarkerName"  , _reqcOldMarkerName->text()); 
   settings.setValue("reqcNewMarkerName"  , _reqcNewMarkerName->text()); 
Index: trunk/BNC/reqcdlg.h
===================================================================
--- trunk/BNC/reqcdlg.h	(revision 4117)
+++ trunk/BNC/reqcdlg.h	(revision 4118)
@@ -55,4 +55,6 @@
    QDateTimeEdit* _reqcStartDateTime;
    QDateTimeEdit* _reqcEndDateTime;
+   QLineEdit*     _reqcRunBy;
+   QLineEdit*     _reqcComment;
    QLineEdit*     _reqcOldMarkerName;
    QLineEdit*     _reqcNewMarkerName;
