From 04d9b60de4430ec4615cff9ec08c1b58362a0403 Mon Sep 17 00:00:00 2001 From: Ludovic Fauvet Date: Tue, 12 Jan 2010 00:29:46 +0100 Subject: [PATCH] Fix include for win32. - Include ignored on Unix (#ifdef Q_OS_WIN) - Windows is case-insensitive - Fail when cross-compiling from Unix --- src/vlmc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vlmc.h b/src/vlmc.h index 32faa4677..f1c6812a8 100644 --- a/src/vlmc.h +++ b/src/vlmc.h @@ -27,7 +27,7 @@ #include #ifdef Q_OS_WIN -#include +#include #endif #ifdef Q_OS_UNIX -- GitLab