aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/Control/ReBar.h
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/Windows/Control/ReBar.h')
-rw-r--r--CPP/Windows/Control/ReBar.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/CPP/Windows/Control/ReBar.h b/CPP/Windows/Control/ReBar.h
index c2d58db..b56f018 100644
--- a/CPP/Windows/Control/ReBar.h
+++ b/CPP/Windows/Control/ReBar.h
@@ -1,7 +1,7 @@
1// Windows/Control/ReBar.h 1// Windows/Control/ReBar.h
2 2
3#ifndef __WINDOWS_CONTROL_REBAR_H 3#ifndef ZIP7_INC_WINDOWS_CONTROL_REBAR_H
4#define __WINDOWS_CONTROL_REBAR_H 4#define ZIP7_INC_WINDOWS_CONTROL_REBAR_H
5 5
6#include "../Window.h" 6#include "../Window.h"
7 7
@@ -14,7 +14,7 @@ public:
14 bool SetBarInfo(LPREBARINFO barInfo) 14 bool SetBarInfo(LPREBARINFO barInfo)
15 { return LRESULTToBool(SendMsg(RB_SETBARINFO, 0, (LPARAM)barInfo)); } 15 { return LRESULTToBool(SendMsg(RB_SETBARINFO, 0, (LPARAM)barInfo)); }
16 bool InsertBand(int index, LPREBARBANDINFO bandInfo) 16 bool InsertBand(int index, LPREBARBANDINFO bandInfo)
17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, index, (LPARAM)bandInfo)); } 17 { return LRESULTToBool(SendMsg(RB_INSERTBAND, MY_int_TO_WPARAM(index), (LPARAM)bandInfo)); }
18 bool SetBandInfo(unsigned index, LPREBARBANDINFO bandInfo) 18 bool SetBandInfo(unsigned index, LPREBARBANDINFO bandInfo)
19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); } 19 { return LRESULTToBool(SendMsg(RB_SETBANDINFO, index, (LPARAM)bandInfo)); }
20 void MaximizeBand(unsigned index, bool ideal) 20 void MaximizeBand(unsigned index, bool ideal)