Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2012-05-30 21:14:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-30 21:14:55 +0400
commitb3bc5edffc052e707604eb07efd2f8260c9bd63c (patch)
treeb42e99ae17339943fa1ed01f801519afc8555e99 /intern/ghost
parent0e9b0f6d9eafb9a92f0589084d3ff05912a86ede (diff)
replaced last instance of BF_GHOST_DEBUG
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_SystemWin32.cpp25
1 files changed, 10 insertions, 15 deletions
diff --git a/intern/ghost/intern/GHOST_SystemWin32.cpp b/intern/ghost/intern/GHOST_SystemWin32.cpp
index 9e9bbc0e395..a647f82a325 100644
--- a/intern/ghost/intern/GHOST_SystemWin32.cpp
+++ b/intern/ghost/intern/GHOST_SystemWin32.cpp
@@ -27,18 +27,12 @@
/** \file ghost/intern/GHOST_SystemWin32.cpp
* \ingroup GHOST
+ *
+ * \author Maarten Gribnau
*/
-
-/**
-
- * Copyright (C) 2001 NaN Technologies B.V.
- * @author Maarten Gribnau
- * @date May 7, 2001
- */
-
-#ifdef BF_GHOST_DEBUG
-#include <iostream>
+#ifdef WITH_GHOST_DEBUG
+# include <iostream>
#endif
#include <stdio.h> // [mce] temporary debug, remove soon!
@@ -47,17 +41,18 @@
#include "GHOST_EventDragnDrop.h"
#ifndef _WIN32_IE
-#define _WIN32_IE 0x0501 /* shipped before XP, so doesn't impose additional requirements */
+# define _WIN32_IE 0x0501 /* shipped before XP, so doesn't impose additional requirements */
#endif
+
#include <shlobj.h>
#include <tlhelp32.h>
// win64 doesn't define GWL_USERDATA
#ifdef WIN32
-#ifndef GWL_USERDATA
-#define GWL_USERDATA GWLP_USERDATA
-#define GWL_WNDPROC GWLP_WNDPROC
-#endif
+# ifndef GWL_USERDATA
+# define GWL_USERDATA GWLP_USERDATA
+# define GWL_WNDPROC GWLP_WNDPROC
+# endif
#endif
#include "utfconv.h"