Author: gschneider Date: Thu Jun 10 20:45:58 2010 New Revision: 47745
URL: http://svn.reactos.org/svn/reactos?rev=47745&view=rev Log: [WIN32K] Use GDITAG_RBRUSH instead of hardcoding the tag
Modified: trunk/reactos/subsystems/win32/win32k/eng/engbrush.c
Modified: trunk/reactos/subsystems/win32/win32k/eng/engbrush.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/eng... ============================================================================== --- trunk/reactos/subsystems/win32/win32k/eng/engbrush.c [iso-8859-1] (original) +++ trunk/reactos/subsystems/win32/win32k/eng/engbrush.c [iso-8859-1] Thu Jun 10 20:45:58 2010 @@ -272,7 +272,7 @@ IN BRUSHOBJ *pbo, IN ULONG cj) { - pbo->pvRbrush = EngAllocMem(0, cj, 'rbdG'); + pbo->pvRbrush = EngAllocMem(0, cj, GDITAG_RBRUSH); return pbo->pvRbrush; }