diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-07-17 16:37:25 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2018-07-17 16:37:25 +0300 |
commit | 0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a (patch) | |
tree | 21f655d30630fe77ba48d07e4b357e2b6c6a5730 /src/SuggestionsPopup.cpp | |
parent | Merge pull request #372 from bebehei/notification (diff) | |
download | nheko-0e814da91c8e041897a4c3f7e6e9234bbc7c6f7a.tar.xz |
Move all files under src/
Diffstat (limited to 'src/SuggestionsPopup.cpp')
-rw-r--r-- | src/SuggestionsPopup.cpp | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/SuggestionsPopup.cpp b/src/SuggestionsPopup.cpp index bcfcb233..5ea78460 100644 --- a/src/SuggestionsPopup.cpp +++ b/src/SuggestionsPopup.cpp @@ -1,14 +1,13 @@ -#include "Avatar.h" -#include "AvatarProvider.h" -#include "Config.h" -#include "DropShadow.h" -#include "SuggestionsPopup.hpp" -#include "Utils.h" - #include <QPaintEvent> #include <QPainter> #include <QStyleOption> +#include "Config.h" +#include "SuggestionsPopup.h" +#include "Utils.h" +#include "ui/Avatar.h" +#include "ui/DropShadow.h" + constexpr int PopupHMargin = 4; constexpr int PopupItemMargin = 3; |