]> git.saurik.com Git - wxWidgets.git/blame_incremental - docs/bugs.txt
Added "const" to the (char *) type params that should have been const params
[wxWidgets.git] / docs / bugs.txt
... / ...
CommitLineData
1wxWindows Buglist
2-----------------
3
4Until the wxWindows bug database is up and running, please add
5entries in this style:
6
7BUG NUMBER:
8SHORT DESCRIPTION:
9DETAILS:
10WORKAROUND:
11wxWINDOWS VERSION:
12PLATFORM(S):
13DATE IDENTIFIED:
14IDENTIFIED BY:
15DATE FIXED:
16FIXED BY:
17
18-------------------------START OF BUGLIST-------------------------
19
20BUG NUMBER: 1
21SHORT DESCRIPTION: Popup menu bug
22DETAILS:
23If a popup wxMenu is destroyed after its parent window has been
24destroyed, we get the message "Object XXX does not have windowed
25ancestor".
26Possible fix: call menu->DestroyMenu() before deleting the window,
27if the window knows about the menu that was last popped up (hard
28to know this with confidence).
29WORKAROUND:
30Delete the menu before deleting the window on which it
31was popped up.
32wxWINDOWS VERSION: 2.0.1
33PLATFORM(S): wxMotif
34DATE IDENTIFIED: ?/?/1998
35IDENTIFIED BY: Julian Smart <julian.smart@ukonline.co.uk>
36DATE FIXED:
37FIXED BY:
38
39BUG NUMBER: 2
40SHORT DESCRIPTION: Misc. Motif bugs
41DETAILS:
42- In wxGrid, cell highlight is not drawn/erased properly.
43
44- Setting the size of a hidden window may show that window.
45
46- wxRadioBox sometimes doesn't show (e.g. in controls sample).
47
48- Can't set the colours for the buttons in the file selector, for
49 some reason.
50
51- On SGI IRIX 6.4, XtDestroyWidget in ~wxWindow causes a crash in
52 some cicumstances. This is being looked into. Meanwhile, a
53 possible workaround is to remove the final XtDestroyWidget line in ~wxWindow
54 (window.cpp). This will mean that child windows will only get
55 destroyed when frames and dialogs are destroyed, so dynamic subwindow
56 deletion may not work properly.
57
58- There are reports that scrolling can cause crashes under Lesstif.
59 This is probably a Lesstif bug.
60WORKAROUND:
61wxWINDOWS VERSION: 2.0.1
62PLATFORM(S): wxMotif
63DATE IDENTIFIED: ?/?/1999
64IDENTIFIED BY: Julian Smart
65DATE FIXED:
66FIXED BY:
67
68BUG NUMBER: 3
69SHORT DESCRIPTION: Dialog Editor issues
70DETAILS:
71Dialog Editor could be more user-friendly. Controls are hard to
72size and position accurately. No way of changing tab order
73except by editing .wxr file.
74WORKAROUND:
75wxWINDOWS VERSION: 2.0.1
76PLATFORM(S): All
77DATE IDENTIFIED: ?/?/1998
78IDENTIFIED BY: Julian Smart <julian.smart@ukonline.co.uk>
79DATE FIXED:
80FIXED BY:
81
82BUG NUMBER: 4
83SHORT DESCRIPTION: Appending a menuitem with negative id causes menu not to be shown
84DETAILS: I haven't tested it throughly, though it happens when appending a submenu
85WORKAROUND: Add dummy id number even for menuitems which don't require them (submenus for example)
86wxWINDOWS VERSION: 2.1.11
87PLATFORMS: wxGTK
88DATE IDENTIFIED: 10/11/1999
89IDENTIFIED BY: Jonathan Brown <jbrown@sso.sytexinc.com>
90
91BUG NUMBER: 5
92SHORT DESCRIPTION: no vertical space inside wxHTML
93DETAILS: We are working on making a demonstration of projects we do here
94using Python & wxWindows & HTML (wxPython/wxHTML thus). We 'd like to
95have the opportunity to specify vertical space, eg <br><br>, or <p><p>
96in HTML. These constructs currently do not work. I looked in the source
97code (nice job btw), but am not sure where to hack the solution. I
98am willing to discuss this in more detail.
99WORKAROUND: Create a transparent gif of 1x1 pixel and use width & height
100to fool the renderer
101wxWINDOWS VERSION: wxWindows 2.1.11
102PLATFORMS: Windows + Python 1.5
103DATE IDENTIFIED: 10/11/1999
104IDENTIFIED BY: A.T.Hofkamp
105DATE FIXED: 11/11/1999
106FIXED BY: Vaclav Slavik
107
108BUG NUMBER: 6
109SHORT DESCRIPTION: wxGTK-2.1.11 fails to build under IRIX
110DETAILS: Seems we have a section that says, if we're not Sun, Linux, or
111FreeBSD, then there's something very wrong...
112c++ -c -MMD -D__WXGTK__ -DGTK_NO_CHECK_CASTS -D_REENTRANT -D_IODBC_ -O2
113-I. -I./include -I./include
114-I./src/zlib -I./src/png -I./src/jpeg
115-I/home/rhh/software/gtk+-1.2.3/include
116-I/home/rhh/software/glib-1.2.3/lib/glib/include
117-I/home/rhh/software/glib-1.2.3/include -Wall
118-D"wxINSTALL_PREFIX=\"/home/rhh/software/wxGTK-2.1.11\"" -fPIC -o
119dialup.o ./src/unix/dialup.cpp ./src/unix/dialup.cpp: In method `int
120wxDialUpManagerImpl::CheckIfconfig()':
121./src/unix/dialup.cpp:500: warning: ignoring pragma: warning
122./src/unix/dialup.cpp:527: parse error before `;'
123./src/unix/dialup.cpp:544: confused by earlier errors, bailing out gmake:
124*** [dialup.o] Error 1
125wxWINDOWS VERSION: 2.1.11
126PLATFORMS: wxGTK
127DATE IDENTIFIED: 16/11/1999
128IDENTIFIED BY: Randall Hopper
129
130
131---------------------------END OF BUGLIST-------------------------
132
133