Index: trunk/BNC/src/RTCM3/RTCM3Decoder.cpp
===================================================================
--- trunk/BNC/src/RTCM3/RTCM3Decoder.cpp	(revision 8199)
+++ trunk/BNC/src/RTCM3/RTCM3Decoder.cpp	(revision 8204)
@@ -824,5 +824,5 @@
   else if ((type % 10) < 3) {
     emit(newMessage(QString("%1: Block %2 contain partial data! Ignored!")
-        .arg(_staID).arg(type).toAscii(), true));
+        .arg(_staID).arg(type).toLatin1(), true));
   }
   if (!syncf) {
@@ -1482,7 +1482,7 @@
        * else. */
       if ((id >= 1057 && id <= 1068) || (id >= 1240 && id <= 1270)) {
-        if (!_coDecoders.contains(_staID.toAscii()))
-          _coDecoders[_staID.toAscii()] = new RTCM3coDecoder(_staID);
-        RTCM3coDecoder* coDecoder = _coDecoders[_staID.toAscii()];
+        if (!_coDecoders.contains(_staID.toLatin1()))
+          _coDecoders[_staID.toLatin1()] = new RTCM3coDecoder(_staID);
+        RTCM3coDecoder* coDecoder = _coDecoders[_staID.toLatin1()];
         if (coDecoder->Decode(reinterpret_cast<char *>(_Message), _BlockSize,
             errmsg) == success) {
@@ -1500,5 +1500,5 @@
             emit(newMessage(
                 QString("%1: Block %2 contain partial data! Ignored!")
-                    .arg(_staID).arg(id).toAscii(), true));
+                    .arg(_staID).arg(id).toLatin1(), true));
             break; /* no use decoding partial data ATM, remove break when data can be used */
           case 1002:
@@ -1511,5 +1511,5 @@
             emit(newMessage(
                 QString("%1: Block %2 contain partial data! Ignored!")
-                    .arg(_staID).arg(id).toAscii(), true));
+                    .arg(_staID).arg(id).toLatin1(), true));
             break; /* no use decoding partial data ATM, remove break when data can be used */
           case 1010:
Index: trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp
===================================================================
--- trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp	(revision 8199)
+++ trunk/BNC/src/RTCM3/RTCM3coDecoder.cpp	(revision 8204)
@@ -146,8 +146,8 @@
     delete _out;
     if ( Qt::CheckState(settings.value("rnxAppend").toInt()) == Qt::Checked) {
-      _out = new ofstream( _fileName.toAscii().data(), ios_base::out | ios_base::app );
+      _out = new ofstream( _fileName.toLatin1().data(), ios_base::out | ios_base::app );
     }
     else {
-      _out = new ofstream( _fileName.toAscii().data() );
+      _out = new ofstream( _fileName.toLatin1().data() );
     }
   }
@@ -560,5 +560,5 @@
 
   if (alreadySet && different) {
-    emit newMessage("RTCM3coDecoder: Provider Changed: " + _staID.toAscii(), true);
+    emit newMessage("RTCM3coDecoder: Provider Changed: " + _staID.toLatin1(), true);
     emit providerIDChanged(_staID);
   }
