From 63a6985d0d960e31fb8dbf6ea830eb3fb6ef3f44 Mon Sep 17 00:00:00 2001 From: Mikkel Krautz Date: Fri, 22 May 2015 20:05:22 +0200 Subject: [PATCH] SSL: remove class name qualifier in SSL.h for new cipher string methods. MSVC accepted it just fine, but it's obviously not the way it should be. --- src/SSL.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SSL.h b/src/SSL.h index 5f2bbb71d..1216b27a4 100644 --- a/src/SSL.h +++ b/src/SSL.h @@ -37,8 +37,8 @@ class MumbleSSL { public: - static QString MumbleSSL::defaultOpenSSLCipherString(); - static QList MumbleSSL::ciphersFromOpenSSLCipherString(QString cipherString); + static QString defaultOpenSSLCipherString(); + static QList ciphersFromOpenSSLCipherString(QString cipherString); static void addSystemCA(); };