From 66e99fd36f0dff27a0a9328303bfd22c13538db0 Mon Sep 17 00:00:00 2001 From: fourtf Date: Fri, 19 Jan 2018 14:53:57 +0100 Subject: [PATCH] renamed and moved asyncexec.hpp to posttothread.hpp --- chatterino.pro | 2 +- src/messages/image.cpp | 1 - src/singletons/ircmanager.cpp | 2 +- src/{asyncexec.hpp => util/posttothread.hpp} | 0 4 files changed, 2 insertions(+), 3 deletions(-) rename src/{asyncexec.hpp => util/posttothread.hpp} (100%) diff --git a/chatterino.pro b/chatterino.pro index d7adb85f8..bb033aba8 100644 --- a/chatterino.pro +++ b/chatterino.pro @@ -166,7 +166,7 @@ SOURCES += \ HEADERS += \ src/precompiled_header.hpp \ - src/asyncexec.hpp \ + src/util/posttothread.hpp \ src/channel.hpp \ src/util/concurrentmap.hpp \ src/emojis.hpp \ diff --git a/src/messages/image.cpp b/src/messages/image.cpp index 6e637ec6f..3ea575b0c 100644 --- a/src/messages/image.cpp +++ b/src/messages/image.cpp @@ -1,5 +1,4 @@ #include "messages/image.hpp" -#include "asyncexec.hpp" #include "singletons/emotemanager.hpp" #include "singletons/ircmanager.hpp" #include "singletons/windowmanager.hpp" diff --git a/src/singletons/ircmanager.cpp b/src/singletons/ircmanager.cpp index 8c426ca98..b01996e11 100644 --- a/src/singletons/ircmanager.cpp +++ b/src/singletons/ircmanager.cpp @@ -1,5 +1,4 @@ #include "singletons/ircmanager.hpp" -#include "asyncexec.hpp" #include "channel.hpp" #include "debug/log.hpp" #include "messages/messageparseargs.hpp" @@ -12,6 +11,7 @@ #include "singletons/windowmanager.hpp" #include "twitch/twitchmessagebuilder.hpp" #include "twitch/twitchuser.hpp" +#include "util/posttothread.hpp" #include "util/urlfetch.hpp" #include diff --git a/src/asyncexec.hpp b/src/util/posttothread.hpp similarity index 100% rename from src/asyncexec.hpp rename to src/util/posttothread.hpp