Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Pavlov <ipavlov@users.sourceforge.net>2015-12-31 03:00:00 +0300
committerKornel LesiƄski <kornel@geekhood.net>2016-05-28 02:16:58 +0300
commit9608215ad8deb58355bae27692669fda067c4f43 (patch)
tree1227131a3f19bc36e5da4ba11791154d05cc08af /CPP/Windows/Control/Trackbar.h
parent5de23c1deb52b8be4c43ad9f694c64bbddd0c38a (diff)
15.1315.13
Diffstat (limited to 'CPP/Windows/Control/Trackbar.h')
-rw-r--r--CPP/Windows/Control/Trackbar.h11
1 files changed, 5 insertions, 6 deletions
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); }
};
}}