aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/Control/ImageList.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Windows/Control/ImageList.h')
-rw-r--r--CPP/Windows/Control/ImageList.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/CPP/Windows/Control/ImageList.h b/CPP/Windows/Control/ImageList.h
index 19feb11..688f177 100644
--- a/CPP/Windows/Control/ImageList.h
+++ b/CPP/Windows/Control/ImageList.h
@@ -1,7 +1,7 @@
1// Windows/Control/ImageList.h 1// Windows/Control/ImageList.h
2 2
3#ifndef __WINDOWS_CONTROL_IMAGE_LIST_H 3#ifndef ZIP7_INC_WINDOWS_CONTROL_IMAGE_LIST_H
4#define __WINDOWS_CONTROL_IMAGE_LIST_H 4#define ZIP7_INC_WINDOWS_CONTROL_IMAGE_LIST_H
5 5
6#include <CommCtrl.h> 6#include <CommCtrl.h>
7 7
@@ -56,7 +56,7 @@ public:
56 bool GetImageInfo(int index, IMAGEINFO* imageInfo) const 56 bool GetImageInfo(int index, IMAGEINFO* imageInfo) const
57 { return BOOLToBool(ImageList_GetImageInfo(m_Object, index, imageInfo)); } 57 { return BOOLToBool(ImageList_GetImageInfo(m_Object, index, imageInfo)); }
58 58
59 int Add(HBITMAP hbmImage, HBITMAP hbmMask = 0) 59 int Add(HBITMAP hbmImage, HBITMAP hbmMask = NULL)
60 { return ImageList_Add(m_Object, hbmImage, hbmMask); } 60 { return ImageList_Add(m_Object, hbmImage, hbmMask); }
61 int AddMasked(HBITMAP hbmImage, COLORREF mask) 61 int AddMasked(HBITMAP hbmImage, COLORREF mask)
62 { return ImageList_AddMasked(m_Object, hbmImage, mask); } 62 { return ImageList_AddMasked(m_Object, hbmImage, mask); }