make quassel compile with qca enabled on qt5 96/head
authorPatrick von Reth <vonreth@kde.org>
Thu, 2 Oct 2014 13:32:11 +0000 (15:32 +0200)
committerPatrick von Reth <vonreth@kde.org>
Thu, 2 Oct 2014 13:32:11 +0000 (15:32 +0200)
src/core/cipher.cpp

index 7cc75d0..3f299f4 100644 (file)
@@ -420,13 +420,13 @@ QByteArray Cipher::byteToB64(QByteArray text)
         right += v;
 
         for (int i = 0; i < 6; i++) {
-            encoded.append(base64.at(right & 0x3F).toAscii());
+            encoded.append(base64.at(right & 0x3F).toLatin1());
             right = right >> 6;
         }
 
-        //TODO make sure the .toascii doesn't break anything
+        //TODO make sure the .toLatin1 doesn't break anything
         for (int i = 0; i < 6; i++) {
-            encoded.append(base64.at(left & 0x3F).toAscii());
+            encoded.append(base64.at(left & 0x3F).toLatin1());
             left = left >> 6;
         }
     }