fix visual studio compiling errors (but not the dirent.h one)
This commit is contained in:
parent
4bb402f4fd
commit
cb8efcd0f9
@ -63,7 +63,7 @@ private:
|
||||
ListenerHandle CompletedListener;
|
||||
ThumbRenderRequest(GameSave * save, bool decorations, int width, int height, ListenerHandle completedListener) :
|
||||
Save(save), Width(width), Height(height), CompletedListener(completedListener), Decorations(decorations) {}
|
||||
ThumbRenderRequest() : Save(0), Decorations(true), Width(0), Height(0), CompletedListener(ListenerHandle(0, NULL)) {}
|
||||
ThumbRenderRequest() : Save(0), Decorations(true), Width(0), Height(0), CompletedListener(ListenerHandle(0, (ThumbnailListener*)NULL)) {}
|
||||
};
|
||||
|
||||
//Thumbnail retreival
|
||||
|
@ -1,5 +1,6 @@
|
||||
//Lexical analyser
|
||||
#include <algorithm>
|
||||
#include <cctype>
|
||||
#include "Scanner.h"
|
||||
|
||||
namespace pim
|
||||
|
Loading…
Reference in New Issue
Block a user