Mercurial > hg > aimc
changeset 602:256caa099e32
Changes to allow compilation on Ubuntu 12.10.
author | sness@sness.net |
---|---|
date | Fri, 19 Apr 2013 00:26:23 +0000 |
parents | d838de2ce1b1 |
children | 087f3b3c36d3 |
files | src/Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovie.h src/Support/SimpleIni.h |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovie.h Tue Apr 02 08:38:23 2013 +0000 +++ b/src/Modules/Output/Graphics/Devices/GraphicsOutputDeviceMovie.h Fri Apr 19 00:26:23 2013 +0000 @@ -28,6 +28,7 @@ #define __GRAPHICS_OUTPUT_DEVICE_MOVIE_H__ #include <string> +#include <unistd.h> #include "Modules/Output/Graphics/Devices/GraphicsOutputDeviceCairo.h" namespace aimc {
--- a/src/Support/SimpleIni.h Tue Apr 02 08:38:23 2013 +0000 +++ b/src/Support/SimpleIni.h Fri Apr 19 00:26:23 2013 +0000 @@ -418,7 +418,7 @@ return *this; } bool ConvertToStore(const SI_CHAR * a_pszString) { - size_t uLen = SizeToStore(a_pszString); + size_t uLen = this->SizeToStore(a_pszString); if (uLen == (size_t)(-1)) { return false; }