From e2970ccba2c78db1ab52bd4db4107f3453693fa6 Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Wed, 22 Nov 2017 05:36:58 +0200 Subject: [PATCH] Fix missing includes --- Telegram/SourceFiles/apiwrap.h | 3 +++ Telegram/SourceFiles/application.h | 3 +++ Telegram/SourceFiles/base/observer.h | 1 + 3 files changed, 7 insertions(+) diff --git a/Telegram/SourceFiles/apiwrap.h b/Telegram/SourceFiles/apiwrap.h index 7b7a94b8f..e95cac078 100644 --- a/Telegram/SourceFiles/apiwrap.h +++ b/Telegram/SourceFiles/apiwrap.h @@ -21,6 +21,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #pragma once #include "base/timer.h" +#include +#include "mtproto/rpc_sender.h" +#include "mtproto/core_types.h" #include "core/single_timer.h" #include "mtproto/sender.h" #include "base/flat_map.h" diff --git a/Telegram/SourceFiles/application.h b/Telegram/SourceFiles/application.h index eec0ffc84..d9ea37f0b 100644 --- a/Telegram/SourceFiles/application.h +++ b/Telegram/SourceFiles/application.h @@ -20,6 +20,9 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org */ #pragma once +#include "stdafx.h" +#include + class UpdateChecker; class Application : public QApplication { Q_OBJECT diff --git a/Telegram/SourceFiles/base/observer.h b/Telegram/SourceFiles/base/observer.h index 362c6d42b..6b1797da4 100644 --- a/Telegram/SourceFiles/base/observer.h +++ b/Telegram/SourceFiles/base/observer.h @@ -22,6 +22,7 @@ Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org #include #include +#include #include "base/type_traits.h" namespace base {