|
From: Todd D. P. <ci...@us...> - 2003-09-24 03:51:29
|
Log Message:
-----------
sorry module should be zero (0) for background -- just safer that way
Modified Files:
--------------
/cvsroot/decaldev/source/Inject:
Button.cpp
Revision Data
-------------
Index: Button.cpp
===================================================================
RCS file: /cvsroot/decaldev/source/Inject/Button.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Button.cpp 24 Sep 2003 03:35:24 -0000 1.3
+++ Button.cpp 24 Sep 2003 03:51:26 -0000 1.4
@@ -60,7 +60,7 @@
POINT pt = { 0, 0 };
- if (m_nBackground != 0) pIcons->DrawIcon( &pt, m_nBackground, m_nModule, pCanvas );
+ if (m_nBackground != 0) pIcons->DrawIcon( &pt, m_nBackground, 0, pCanvas );
pIcons->DrawIcon( &pt, nImage, m_nModule, pCanvas );
_ASSERTMEM( _CrtCheckMemory( ) );
|