From 2603fb7cb6dd2205529f0f88113fbce896e6a7f5 Mon Sep 17 00:00:00 2001
From: John Preston <johnprestonmail@gmail.com>
Date: Sat, 3 Jan 2015 02:59:58 +0300
Subject: [PATCH] warning fixed

---
 Telegram/SourceFiles/types.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Telegram/SourceFiles/types.h b/Telegram/SourceFiles/types.h
index 019413f25..989ce12dd 100644
--- a/Telegram/SourceFiles/types.h
+++ b/Telegram/SourceFiles/types.h
@@ -362,7 +362,7 @@ public:
 		WebP,
 	};
 
-	MimeType(const QMimeType &type) : _type(Unknown), _typeStruct(type) {
+	MimeType(const QMimeType &type) : _typeStruct(type), _type(Unknown) {
 	}
 	MimeType(TypeEnum type) : _type(type) {
 	}