http://bugs.winehq.org/show_bug.cgi?id=3928
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2005-29-11 13:55 -------
It's not a child window. That's what you are missing here. EnunChildWindows()
should not and does not include owned windows. Only child windows.
These tests pass on wine and windows. Unless you can provide us with some code
that returns different results on windows and wine this bug is closed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3909
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
------- Additional Comments From dank(a)kegel.com 2005-29-11 12:58 -------
You seem to be using some native DLLs.
Can you retest with a pure Wine-0.9.2 installation?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3822
wine(a)seufer.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine(a)seufer.de
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3822
------- Additional Comments From wine(a)seufer.de 2005-29-11 11:48 -------
I have the same problem with icewm as windowmanager and wine 0.9.2. The problem
here is even more worse because you have to be very quick until the menue
disappear. (~1 second)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3121
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3963
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression
------- Additional Comments From tony.lambregts(a)gmail.com 2005-29-11 10:45 -------
If it truly is a regression you should be able to find the patch that broke it
using regression testing as described here:
http://www.winehq.org/site/docs/winedev-guide/x1344
Please give it a try.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3254
------- Additional Comments From vitaliy(a)kievinfo.com 2005-29-11 10:11 -------
Emilie, you are missing the point. You don't want to use any dll from XP. In 99%
cases they will crash on Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3928
------- Additional Comments From andrew7webb(a)comcast.net 2005-29-11 10:08 -------
Actually, it might confirm the theory.
"EnumChildWindows should have returned FALSE\n" );
ok( numChildren == 2, "numChildren should be 2 got %d\n", numChildren );
>>> I have 2 windows now, since ok did not find an error.
+ DestroyWindow( child );
>>> I should have 1 window now.
+ child = create_tool_window( WS_VISIBLE | WS_OVERLAPPEDWINDOW, owner );
>>> I should have 2 windows now.
+ numChildren = 0;
+ ok( EnumChildWindows( owner, EnumChildProc, (LPARAM)&numChildren ),
+ "EnumChildWindows should have returned TRUE\n" );
+ ok( numChildren == 1, "numChildren should be 1 got %d\n", numChildren );
>>> But you check for 1 window, and there should be two now.
>>> So what happened to the newly created window ?
DestroyWindow( child );
+
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.