From 9608215ad8deb58355bae27692669fda067c4f43 Mon Sep 17 00:00:00 2001 From: Igor Pavlov Date: Thu, 31 Dec 2015 00:00:00 +0000 Subject: 15.13 --- CPP/Windows/Control/Trackbar.h | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'CPP/Windows/Control/Trackbar.h') diff --git a/CPP/Windows/Control/Trackbar.h b/CPP/Windows/Control/Trackbar.h index c6d31112..313e0c85 100644 --- a/CPP/Windows/Control/Trackbar.h +++ b/CPP/Windows/Control/Trackbar.h @@ -4,23 +4,22 @@ #define __WINDOWS_CONTROL_TRACKBAR_H #include "../Window.h" -#include "../Defs.h" namespace NWindows { namespace NControl { -class CTrackbar1: public CWindow +class CTrackbar: public CWindow { public: void SetRange(int minimum, int maximum, bool redraw = true) - { SendMessage(TBM_SETRANGE, BoolToBOOL(redraw), MAKELONG(minimum, maximum)); } + { SendMsg(TBM_SETRANGE, BoolToBOOL(redraw), MAKELONG(minimum, maximum)); } void SetPos(int pos, bool redraw = true) - { SendMessage(TBM_SETPOS, BoolToBOOL(redraw), pos); } + { SendMsg(TBM_SETPOS, BoolToBOOL(redraw), pos); } void SetTicFreq(int freq) - { SendMessage(TBM_SETTICFREQ, freq); } + { SendMsg(TBM_SETTICFREQ, freq); } int GetPos() - { return (int)SendMessage(TBM_GETPOS); } + { return (int)SendMsg(TBM_GETPOS); } }; }} -- cgit v1.2.3