Index: trunk/BNC/bncwindow.cpp
===================================================================
--- trunk/BNC/bncwindow.cpp	(revision 3617)
+++ trunk/BNC/bncwindow.cpp	(revision 3618)
@@ -935,4 +935,6 @@
   _postCorrFileChooser->setWhatsThis(tr("Full Path to DGPS Correction File"));
 
+  _postOutLineEdit = new QLineEdit(settings.value("postOutFile").toString());
+
   int ir = 0;
   pppLayout->addWidget(new QLabel("<b>Precise Point Positioning (Panel 1)</b>"), ir, 0, 1, 8);
@@ -976,4 +978,7 @@
   }
   pppLayout->addLayout(hlpLayout, ir, 1, 1, 7);
+  ++ir;
+  pppLayout->addWidget(_postOutLineEdit);
+  pppLayout->addWidget(new QLabel("Output"));
 
   pppgroup->setLayout(pppLayout);
@@ -1030,7 +1035,4 @@
   ppp2Layout->addWidget(_pppAverageLineEdit,                ir, 3, Qt::AlignRight);
   ppp2Layout->addWidget(new QLabel("Averaging (min)") ,     ir, 4);  
-  ++ir;
-  ppp2Layout->addWidget(new QLabel(" "),                    ir, 0);
-  ppp2Layout->setRowStretch(ir, 99);
 
   ppp2group->setLayout(ppp2Layout);
@@ -1558,4 +1560,5 @@
   settings.setValue("postNavFile", _postNavFileChooser->fileName());
   settings.setValue("postCorrFile", _postCorrFileChooser->fileName());
+  settings.setValue("postOutFile", _postOutLineEdit->text());
 
   if (_caster) {
Index: trunk/BNC/bncwindow.h
===================================================================
--- trunk/BNC/bncwindow.h	(revision 3617)
+++ trunk/BNC/bncwindow.h	(revision 3618)
@@ -162,4 +162,5 @@
     QProgressBar*  _postProgressBar;
     QLabel*        _postProgressLabel;
+    QLineEdit*     _postOutLineEdit;
 
     QCheckBox* _rnxV3CheckBox;
