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:
Diffstat (limited to 'CPP/Windows/Control/Trackbar.h')
-rwxr-xr-xCPP/Windows/Control/Trackbar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/CPP/Windows/Control/Trackbar.h b/CPP/Windows/Control/Trackbar.h
index bbd7009a..64120f98 100755
--- a/CPP/Windows/Control/Trackbar.h
+++ b/CPP/Windows/Control/Trackbar.h
@@ -20,7 +20,7 @@ public:
{ SendMessage(TBM_SETTICFREQ, freq); }
int GetPos()
- { return SendMessage(TBM_GETPOS); }
+ { return (int)SendMessage(TBM_GETPOS); }
};
}}