[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [47236] trunk/blender/intern/ghost/intern/ GHOST_SystemWin32.cpp: replaced last instance of BF_GHOST_DEBUG

Campbell Barton ideasman42 at gmail.com
Wed May 30 19:14:56 CEST 2012


Revision: 47236
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=47236
Author:   campbellbarton
Date:     2012-05-30 17:14:55 +0000 (Wed, 30 May 2012)
Log Message:
-----------
replaced last instance of BF_GHOST_DEBUG

Modified Paths:
--------------
    trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp

Modified: trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp
===================================================================
--- trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp	2012-05-30 16:37:12 UTC (rev 47235)
+++ trunk/blender/intern/ghost/intern/GHOST_SystemWin32.cpp	2012-05-30 17:14:55 UTC (rev 47236)
@@ -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,18 +41,19 @@
 #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 
+#  ifndef GWL_USERDATA
+#    define GWL_USERDATA GWLP_USERDATA
+#    define GWL_WNDPROC GWLP_WNDPROC
+#  endif
 #endif
-#endif
 
 #include "utfconv.h"
 




More information about the Bf-blender-cvs mailing list