From cb8efcd0f98185104805c8caa88decd39fbd9070 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Mon, 1 Oct 2012 19:29:23 -0400 Subject: fix visual studio compiling errors (but not the dirent.h one) diff --git a/src/client/ThumbnailBroker.h b/src/client/ThumbnailBroker.h index 360c386..cc736ef 100644 --- a/src/client/ThumbnailBroker.h +++ b/src/client/ThumbnailBroker.h @@ -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 diff --git a/src/pim/Scanner.cpp b/src/pim/Scanner.cpp index b56d2b6..e6d145a 100644 --- a/src/pim/Scanner.cpp +++ b/src/pim/Scanner.cpp @@ -1,5 +1,6 @@ //Lexical analyser #include +#include #include "Scanner.h" namespace pim -- cgit v0.9.2-21-gd62e