summaryrefslogtreecommitdiff
path: root/src/w32term.c
diff options
context:
space:
mode:
authorJason Rumney <jasonr@gnu.org>2006-06-08 21:30:12 +0000
committerJason Rumney <jasonr@gnu.org>2006-06-08 21:30:12 +0000
commit33e40ce7fbd2c39899b06123e0430921d17e8bb4 (patch)
tree32992125fdd322ca743de54fa7b2df16270f26e4 /src/w32term.c
parent3e199297c6af86bc8dc7ee36076c9cd8dc28bb8b (diff)
downloademacs-33e40ce7fbd2c39899b06123e0430921d17e8bb4.tar.gz
(w32_initialize) Manually sync 2006-06-05 change from HEAD.
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c15
1 files changed, 3 insertions, 12 deletions
diff --git a/src/w32term.c b/src/w32term.c
index 0a7007cc8f4..2cf6cfd7b1d 100644
--- a/src/w32term.c
+++ b/src/w32term.c
@@ -6511,29 +6511,20 @@ w32_initialize ()
AttachThreadInput (dwMainThreadId, dwWindowsThreadId, TRUE);
#endif
- /* Dynamically link to optional system components. */
+ /* Dynamically link to optional system components. */
{
- HANDLE user_lib = LoadLibrary ("user32.dll");
HANDLE gdi_lib = LoadLibrary ("gdi32.dll");
- UINT smoothing_type;
- BOOL smoothing_enabled;
#define LOAD_PROC(lib, fn) pfn##fn = (void *) GetProcAddress (lib, #fn)
- /* New proportional scroll bar functions. */
- LOAD_PROC (user_lib, SetScrollInfo);
- LOAD_PROC (user_lib, GetScrollInfo);
LOAD_PROC (gdi_lib, GetFontUnicodeRanges);
#undef LOAD_PROC
- FreeLibrary (user_lib);
FreeLibrary (gdi_lib);
- /* If using proportional scroll bars, ensure handle is at least 5 pixels;
- otherwise use the fixed height. */
- vertical_scroll_bar_min_handle = (pfnSetScrollInfo != NULL) ? 5 :
- GetSystemMetrics (SM_CYVTHUMB);
+ /* Ensure scrollbar handle is at least 5 pixels. */
+ vertical_scroll_bar_min_handle = 5;
/* For either kind of scroll bar, take account of the arrows; these
effectively form the border of the main scroll bar range. */