home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: comp.windows.open-look
- From: bryan@alex.com (Bryan Boreham)
- Path: sparky!uunet!pipex!demon!alex.com!bryan
- Subject: Re: OLIT in Solaris 2.1
- Nntp-Posting-Host: felix
- Organization: Alex Technologies Ltd, London, England
- References: <18352@autodesk.COM>
- Apparently-To: mail2news@demon.co.uk
- Date: Mon, 11 Jan 1993 19:11:26 +0000
- Message-ID: <1993Jan11.191126.2010@alex.com>
- Sender: usenet@demon.co.uk
- Lines: 45
-
- In article <18352@autodesk.COM>, stevel@Autodesk.COM (Steven W. Litras) writes:
- |> Hey everyone, pardon if this has become a FAQ, but has anyone else seen
- |> Scrolling List widgets Segment Faulting under OLIT in solaris 2.1? If
- |> so, is there a workaround?
-
- Oh yes, within hours of installing from the CD. I reported it
- to my Sun contact, but am yet to hear of any fix or work-around.
- Maybe my problem is different from yours: mine is only when mouseless
- is True, and the widget gets given focus.
-
- To save time for others who want to report the bug, I attach
- my example program. Maybe someone at Sun closer to OLIT support
- will take notice?
-
- Bryan Boreham (bryan@alex.com)
-
- --------------------------------------------------------------------
- #include <X11/Intrinsic.h>
- #include <Xol/OpenLook.h>
- #include <Xol/ScrollingL.h>
-
- /* From ALEX Technologies Ltd, 12/22/92
- Run as:
-
- slcrash -xrm '*mouseless: True'
-
- for me, it core-dumps when the window is given focus.
- */
-
- int
- main (argc, argv)
- int argc;
- char **argv;
- {
- Widget toplevel;
-
- toplevel = OlInitialize("alex", "Alex", NULL, 0, (Cardinal*)&argc, argv);
-
- XtCreateManagedWidget ("list", scrollingListWidgetClass, toplevel, NULL, 0);
-
- XtRealizeWidget (toplevel);
-
- XtMainLoop();
- return 0;
- }
-