Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!hao!ames!sdcsvax!ucsdhub!hp-sdd!hplabs!hp-pcd!hpcvlo!tom From: tom@hpcvlo.HP.COM (Tom Houser) Newsgroups: comp.windows.x Subject: Re: Scroll.c? Message-ID: <3940032@hpcvlo.HP.COM> Date: Fri, 23-Oct-87 18:09:12 EST Article-I.D.: hpcvlo.3940032 Posted: Fri Oct 23 18:09:12 1987 Date-Received: Mon, 26-Oct-87 01:48:45 EST References: <26900013@uiucdcsm> Organization: Hewlett-Packard Co., Corvallis, OR, USA Lines: 18 The scrollbar was not included in the makefile in the Sept. release of the X11 tape. I found that Scroll.c wouldn't compile, but made the following two fixes. It now compiles and appears to work. In the file Scroll.c: 49c49 < "2: MoveThumb()", /* bug? in TM forces button spec here */ --- > "Button2: MoveThumb()",/*bug? in TM forces button spec here */ In the file Conversion.c: Make the declaration "Cursor cursor;" static in the function "CvtStringToCursor". It gets passed out of the function and therefore must be declared static. e.g., static Cursor cursor;