Index: trunk/BNC/bnchelp.html
===================================================================
--- trunk/BNC/bnchelp.html	(revision 2093)
+++ trunk/BNC/bnchelp.html	(revision 2094)
@@ -933,5 +933,5 @@
 BNC can derive coordinates for a rover position following the Precise Point Positioning (PPP) approach. It uses either code or phase data in ionosphere free linear combinations P3 or L3. Besides pulling a stream of observations from a receiver this also requires pulling
 <ul>
-<li>satellite orbit and clock corrections to Broadcast Ephemeris in the form of 'State Space Representation' (SSR) messages as proposed by RTCM (i.e. premature message type 1060).</li>
+<li>satellite orbit and clock corrections to Broadcast Ephemeris in the form of 'State Space Representation' (SSR) messages as proposed by RTCM (i.e. premature message type 1060). Note that for BNC these correctors need to refer to the satellite's Antenna Phase Center (APC).</li>
 <li>Broadcast Ephemeris available as RTCM Version 3 message types 1019 and 1020. Note that a stream dedicated to providing these messages is 'RTCM3EPH" on NTRIP broadcaster www.igs-ip.net.</li>
 </ul>
Index: trunk/BNC/bncwindow.cpp
===================================================================
--- trunk/BNC/bncwindow.cpp	(revision 2093)
+++ trunk/BNC/bncwindow.cpp	(revision 2094)
@@ -739,14 +739,16 @@
   QGridLayout* pppLayout = new QGridLayout;
   pppLayout->setColumnMinimumWidth(0,14*ww);
-  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);
-  pppLayout->addWidget(new QLabel("Use phase obs"),  2, 0);
-  pppLayout->addWidget(_pppUsePhaseCheckBox,         2, 1);
-  pppLayout->addWidget(new QLabel("Estimate tropo"), 3, 0);
-  pppLayout->addWidget(_pppEstTropoCheckBox,         3, 1);
-  pppLayout->addWidget(new QLabel("Derive coordinates through Precise Point Positioning (PPP) solution."),4, 0,1,30);
-  pppLayout->addWidget(new QLabel("    "),           5, 0);
+  pppLayout->addWidget(new QLabel("Mountpoint"),          0, 0);
+  pppLayout->addWidget(_pppMountLineEdit,                 0, 1, 1, 3);
+  pppLayout->addWidget(new QLabel("Static"),              1, 0);
+  pppLayout->addWidget(_pppStaticCheckBox,                1, 1);
+  pppLayout->addWidget(new QLabel("     Use phase obs"),  1, 2, Qt::AlignRight);
+  pppLayout->addWidget(_pppUsePhaseCheckBox,              1, 3);
+  pppLayout->addWidget(new QLabel("     Estimate tropo"), 1, 4, Qt::AlignRight);
+  pppLayout->addWidget(_pppEstTropoCheckBox,              1, 5);
+  pppLayout->addWidget(new QLabel("Derive coordinates following Precise Point Positioning (PPP) approach."),2, 0,1,30);
+  pppLayout->addWidget(new QLabel("    "),                3, 0);
+  pppLayout->addWidget(new QLabel("    "),                4, 0);
+  pppLayout->addWidget(new QLabel("    "),                5, 0);
   pppgroup->setLayout(pppLayout);
 
