From efd08a21f91247df4989af1d748e000b595a87ea Mon Sep 17 00:00:00 2001 From: Matei Date: Mon, 3 Sep 2007 23:32:16 +0000 Subject: [PATCH] Use #if instead of #ifdef to detect HAVE_X. This was SVN commit r5323. --- source/lib/sysdep/unix/x/x.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/lib/sysdep/unix/x/x.cpp b/source/lib/sysdep/unix/x/x.cpp index e6a9a5b312..e0bfb1d00f 100644 --- a/source/lib/sysdep/unix/x/x.cpp +++ b/source/lib/sysdep/unix/x/x.cpp @@ -4,7 +4,7 @@ #include "precompiled.h" -#ifdef HAVE_X +#if HAVE_X #include #include @@ -318,4 +318,4 @@ LibError sys_clipboard_set(const wchar_t *str) return INFO::OK; } -#endif // #ifdef HAVE_X +#endif // #if HAVE_X