diff options
| author | Aleksey Tulinov <aleksey.tulinov@gmail.com> | 2018-04-10 00:42:47 +0300 |
|---|---|---|
| committer | Marco Trevisan (Treviño) <mail@3v1n0.net> | 2018-11-04 20:18:59 -0600 |
| commit | 5ba0a962255faf88285191d60a0265edafc23eb1 (patch) | |
| tree | 397b52632e7a10fb7a3c25099347e973367341e1 | |
| parent | 059031e4289647b8171193c18c94ef99da8fc161 (diff) | |
Add missing includes for build w/o pch
| -rw-r--r-- | UnityCore/GLibDBusServer.cpp | 2 | ||||
| -rw-r--r-- | launcher/DevicesSettingsImp.cpp | 1 | ||||
| -rw-r--r-- | launcher/FavoriteStoreGSettings.cpp | 2 | ||||
| -rw-r--r-- | launcher/FavoriteStorePrivate.h | 2 | ||||
| -rw-r--r-- | unity-shared/IconLoader.h | 1 |
5 files changed, 7 insertions, 1 deletions
diff --git a/UnityCore/GLibDBusServer.cpp b/UnityCore/GLibDBusServer.cpp index 49b70d7c0..8fcfdf9d7 100644 --- a/UnityCore/GLibDBusServer.cpp +++ b/UnityCore/GLibDBusServer.cpp @@ -17,7 +17,9 @@ * Authored by: Marco Trevisan (Treviño) <marco.trevisan@canonical.com> */ +#include <algorithm> #include <unordered_map> + #include <NuxCore/Logger.h> #include "GLibDBusServer.h" diff --git a/launcher/DevicesSettingsImp.cpp b/launcher/DevicesSettingsImp.cpp index 08eddb9cb..25f40a6b2 100644 --- a/launcher/DevicesSettingsImp.cpp +++ b/launcher/DevicesSettingsImp.cpp @@ -17,6 +17,7 @@ * Authored by: Andrea Azzarone <andrea.azzarone@canonical.com> */ +#include <algorithm> #include <list> #include <gio/gio.h> diff --git a/launcher/FavoriteStoreGSettings.cpp b/launcher/FavoriteStoreGSettings.cpp index 415a04bfe..493e823b1 100644 --- a/launcher/FavoriteStoreGSettings.cpp +++ b/launcher/FavoriteStoreGSettings.cpp @@ -18,6 +18,8 @@ * Marco Trevisan <marco.trevisan@canonical.com> */ +#include <algorithm> + #include <NuxCore/Logger.h> #include <UnityCore/DesktopUtilities.h> diff --git a/launcher/FavoriteStorePrivate.h b/launcher/FavoriteStorePrivate.h index 3edad2357..ebd3cfe2a 100644 --- a/launcher/FavoriteStorePrivate.h +++ b/launcher/FavoriteStorePrivate.h @@ -22,6 +22,7 @@ #include <list> #include <string> +#include <vector> namespace unity { @@ -47,4 +48,3 @@ bool IsDesktopFilePath(std::string const& path); } // namespace unity #endif - diff --git a/unity-shared/IconLoader.h b/unity-shared/IconLoader.h index fb4587e35..595def484 100644 --- a/unity-shared/IconLoader.h +++ b/unity-shared/IconLoader.h @@ -22,6 +22,7 @@ #include <boost/utility.hpp> +#include <functional> #include <memory> #include <gtk/gtk.h> #include <UnityCore/ActionHandle.h> |
