Index: trunk/BNC/RTCM3/RTCM3coDecoder.cpp
===================================================================
--- trunk/BNC/RTCM3/RTCM3coDecoder.cpp	(revision 1725)
+++ trunk/BNC/RTCM3/RTCM3coDecoder.cpp	(revision 1727)
@@ -105,5 +105,11 @@
 
     delete _out;
-    _out = new ofstream( _fileName.toAscii().data() );
+    if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
+      _out = new ofstream( _fileName.toAscii().data(),
+                           ios_base::out | ios_base::app );
+    }
+    else {
+      _out = new ofstream( _fileName.toAscii().data() );
+    }
   }
 }
