Index: trunk/BNC/bncwindow.cpp
===================================================================
--- trunk/BNC/bncwindow.cpp	(revision 2077)
+++ trunk/BNC/bncwindow.cpp	(revision 2078)
@@ -302,4 +302,7 @@
   // -----------
   _pppMountLineEdit  = new QLineEdit(settings.value("pppMount").toString());
+  _pppStaticCheckBox = new QCheckBox();
+  _pppStaticCheckBox->setCheckState(Qt::CheckState(
+                                    settings.value("pppStatic").toInt()));
 
   // Streams
@@ -728,4 +731,6 @@
   pppLayout->addWidget(new QLabel("Mountpoint"), 0, 0);
   pppLayout->addWidget(_pppMountLineEdit,        0, 1, 1,7);
+  pppLayout->addWidget(new QLabel("Static"),     1, 0);
+  pppLayout->addWidget(_pppStaticCheckBox,       1, 1);
   pppgroup->setLayout(pppLayout);
 
@@ -1033,4 +1038,5 @@
   settings.setValue("miscMount",   _miscMountLineEdit->text());
   settings.setValue("pppMount",    _pppMountLineEdit->text());
+  settings.setValue("pppStatic",   _pppStaticCheckBox->checkState());
   settings.setValue("mountPoints", mountPoints);
   settings.setValue("obsRate",     _obsRateComboBox->currentText());
Index: trunk/BNC/bncwindow.h
===================================================================
--- trunk/BNC/bncwindow.h	(revision 2077)
+++ trunk/BNC/bncwindow.h	(revision 2078)
@@ -113,4 +113,5 @@
     QLineEdit* _miscMountLineEdit;
     QLineEdit* _pppMountLineEdit;
+    QCheckBox* _pppStaticCheckBox;
     QCheckBox* _rnxV3CheckBox;
     QCheckBox* _ephV3CheckBox;
Index: trunk/BNC/ppp.gpt
===================================================================
--- trunk/BNC/ppp.gpt	(revision 2077)
+++ trunk/BNC/ppp.gpt	(revision 2078)
@@ -9,5 +9,5 @@
 set title "ZIM20"
 set ylabel "meters"
-set xlabel "1-Dec-2009"
+set xlabel "5-Dec-2009"
 
 plot "ppp" u 1:4 t "dH" w p 3, \
