From 963bf16da6f89da417f251c0a39ab5fd7e0221c0 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Mardelle Date: Wed, 11 Mar 2009 12:44:29 +0000 Subject: [PATCH] Fix up a busted preprocessor check [PATCH by Ray Lehtiniemi] svn path=/trunk/kdenlive/; revision=3132 --- src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.cpp b/src/main.cpp index 110c2f48..4f2ce1bc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,7 +26,7 @@ #include "mainwindow.h" -#ifdef __APPLE_KDE__ || __DARWIN__ +#if defined(__APPLE_KDE__) || defined(__DARWIN__) #include #endif -- 2.39.2