Index: trunk/BNC/src/reqcdlg.cpp
===================================================================
--- trunk/BNC/src/reqcdlg.cpp	(revision 6116)
+++ trunk/BNC/src/reqcdlg.cpp	(revision 6117)
@@ -64,4 +64,5 @@
   _reqcEndDateTime->setDisplayFormat(timeFmtString);
   _reqcRunBy           = new QLineEdit(this);
+  _reqcUseObsTypes     = new QLineEdit(this);
   _reqcComment         = new QLineEdit(this);
   _reqcOldMarkerName   = new QLineEdit(this);
@@ -104,4 +105,5 @@
   }
   _reqcRunBy->setText(settings.value("reqcRunBy").toString());
+  _reqcUseObsTypes->setText(settings.value("reqcUseObsTypes").toString());
   _reqcComment->setText(settings.value("reqcComment").toString());
   _reqcOldMarkerName->setText(settings.value("reqcOldMarkerName").toString());
@@ -129,4 +131,7 @@
   grid->addWidget(new QLabel("Run By"),        ir, 0);
   grid->addWidget(_reqcRunBy,                  ir, 1);
+  ++ir;
+  grid->addWidget(new QLabel("Use Obs. Types"),ir, 0);
+  grid->addWidget(_reqcUseObsTypes,            ir, 1, 1, 4);
   ++ir;
   grid->addWidget(new QLabel("Comment(s)"),    ir, 0);
@@ -233,4 +238,5 @@
   settings.setValue("reqcEndDateTime"    , _reqcEndDateTime->dateTime().toString(Qt::ISODate));   
   settings.setValue("reqcRunBy"          , _reqcRunBy->text()); 
+  settings.setValue("reqcUseObsTypes"    , _reqcUseObsTypes->text()); 
   settings.setValue("reqcComment"        , _reqcComment->text()); 
   settings.setValue("reqcOldMarkerName"  , _reqcOldMarkerName->text()); 
Index: trunk/BNC/src/reqcdlg.h
===================================================================
--- trunk/BNC/src/reqcdlg.h	(revision 6116)
+++ trunk/BNC/src/reqcdlg.h	(revision 6117)
@@ -56,4 +56,5 @@
    QDateTimeEdit* _reqcEndDateTime;
    QLineEdit*     _reqcRunBy;
+   QLineEdit*     _reqcUseObsTypes;
    QLineEdit*     _reqcComment;
    QLineEdit*     _reqcOldMarkerName;
