Fixed compiling on Linux.

This commit is contained in:
Aloshi 2014-04-20 14:23:49 -05:00
parent bff6295bb0
commit 0b3a0d0e4e
3 changed files with 2 additions and 4 deletions

View file

@ -1,5 +1,4 @@
#include "AnimatedImageComponent.h"
#include "ImageComponent.h"
#include "../Log.h"
AnimatedImageComponent::AnimatedImageComponent(Window* window) : GuiComponent(window), mEnabled(false)

View file

@ -1,6 +1,5 @@
#include "../GuiComponent.h"
class ImageComponent;
#include "ImageComponent.h"
struct AnimationFrame
{

View file

@ -54,5 +54,5 @@ void BusyComponent::onSizeChanged()
void BusyComponent::reset()
{
mAnimation->reset();
//mAnimation->reset();
}