http://bugs.winehq.org/show_bug.cgi?id=18130
Summary: VB APPS: Using edit controls context menu crashes
application.
Product: Wine
Version: 1.1.19
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: martinmnet(a)hotmail.com
Vb applications crash when I click on any selection from edit windows context
menu.
Reason:
menu control is sending WM_COMMAND msg to edit control and shouldnt be.
The VB runtime subclass' the edit control and dies when receiving WM_COMMAND
with the sent wParam.
Solution.
Change menu.c approx line 2561 to check if window is appropriate before sending
WM_COMMAND, i.e. not edit class windows.
Replace edit.c function EDIT_WM_Command
static void EDIT_WM_MenuSelect(EDITSTATE *es, INT code, INT id, HWND control)
{
static INT SelectedItem;
if (id != 0) {
/* Save the currently selected item and return */
SelectedItem = id;
return;
}
switch (SelectedItem) {
case EM_UNDO:
SendMessageW(es->hwndSelf, WM_UNDO, 0, 0);
break;
case WM_CUT:
SendMessageW(es->hwndSelf, WM_CUT, 0, 0);
break;
case WM_COPY:
SendMessageW(es->hwndSelf, WM_COPY, 0, 0);
break;
case WM_PASTE:
SendMessageW(es->hwndSelf, WM_PASTE, 0, 0);
break;
case WM_CLEAR:
SendMessageW(es->hwndSelf, WM_CLEAR, 0, 0);
break;
case EM_SETSEL:
EDIT_EM_SetSel(es, 0, (UINT)-1, FALSE);
EDIT_EM_ScrollCaret(es);
break;
default:
ERR("unknown menu item, please report\n");
break;
}
}
and change edit.c line 5195
case WM_COMMAND:
EDIT_WM_Command(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
to
case WM_MENUSELECT:
EDIT_WM_MenuSelect(es, HIWORD(wParam),
LOWORD(wParam),(HWND)lParam);
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18620
Summary: Braid puzzle problem
Product: Wine
Version: 1.1.22
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriel.gandul22(a)gmail.com
This is a minor bug but it bothers a lot. First of all let me say that this
game runs really good on wine. But the only problem is when you try to complete
the puzzle. In this part the mouse becomes unresponsive and it goes to the
bottom of the screen to the right.
It's just impossible to beat that part. It happens in every puzzle.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=12623
Summary: yBook: doesn't display page textures
Product: Wine
Version: 0.9.59.
Platform: PC
URL: http://www.spacejock.com/yBook.html
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: laur.olb1(a)gmail.com
Created an attachment (id=12253)
--> (http://bugs.winehq.org/attachment.cgi?id=12253)
Output from running Wine v0.9.59 with yBook v1.5.26
when the latest version of yBook, version 1.5.26, is run, the page textures are
not displayed. Instead, just a black background is shown. Also, if the "hide
desktop" feature is used, the texture is displayed across the whole screen,
however the program is not shown on top of the texture as it is in Windows.
Based on the output, may be a problem in ole32.dll? Attempting to use a native
version of ole32.dll failed, Wine would not even launch the application.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20506
Summary: Diablo 2 Slow down
Product: Wine
Version: 1.1.32
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hibbsncc1701(a)yahoo.com
When running Diablo 2 1.12, Opening the map overlay causes a fps drop down to
about 1 fps. This occurs with or without moving your character, Doing an
attack, etc. This affect is enhanced when enemies are being put onto the
screen. Lowering settings doesn't help. This effect is in place until the map
is closed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=21178
Summary: FTD.COM Living Virtual Flower: Text scrambled and
transparency not working
Product: Wine
Version: 1.1.35
Platform: x86
URL: http://www.gazup.com/n70bJ-install_lvf.15.exe-download
-mirrors
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gaming4jc2(a)yahoo.com
Created an attachment (id=25428)
--> (http://bugs.winehq.org/attachment.cgi?id=25428)
Wine buggies, Notice the LWA_COLORKEY not supported
In Windows XP mode FTD.com's Living Virtual Flower (a spyware free screen
mate), fails to show transparency and has light blue colored blocks around all
animations. Also the text is unreadable and contains random ASCII instead othe
what it should be saying.
In Windows 98 mode the transparency is not an issue but the text still is.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=13091
Summary: Input error compiling c++ sources with mingw
Product: Wine
Version: 1.0-rc1
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: onido89(a)gmail.com
Hi,
i've searched for this bug but i don't know if it just exist, anyway i wanted
to tell you that i've found a bug while i was compiling a source code in c++
language, that was made like this:
--------------------------------------
#include <stdio.h>
int main()
{
int i=1;
char s[40],c;
while(i!=0)
{
printf("Number-->");
scanf("%d%c",&i,&c);
printf("String->");
gets(s);
}
}
--------------------------------------
When i try to use it in winecmd it doesn't get exactly the inputs method (it
overlay the string method, it seems to ignore it...). Anyway try it for
yourself if you want and i hope it will be fixed for 1.0.
Great work anyway, this is the best emulator that i've ever used ;)
Have a nice day, and keep rollin!
GTOnizuka
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=20266
Summary: Email alert function fails in StrategyDesk, read
timeout in winsock
Product: Wine
Version: 1.1.30
Platform: PC
URL: http://www.tdameritrade.com/StrategyDesk/SetupStrategy
Desk.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P5
Component: winsock
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: deefster(a)cheerful.com
Created an attachment (id=23920)
--> (http://bugs.winehq.org/attachment.cgi?id=23920)
WINEDEBUG=+all,-relay,-syslevel,-gdi,-heap wine StrategyDesk.exe
Overview:
The program is StrategyDesk, part of the TD Ameritrade brokerage trading
platform software.
The email alerts fail to send in wine, but send ok from native Win2k.
Steps to reproduce:
1. Login to program
2. Select Edit->Preferences
3. Fill in smtp server settings and press 'Test' to send a test email.
Actual results:
Email never sent, but no harmful impact to program.
My interpretation of the debug output is a timeout trying to interpret a
response from the SMTP server, or perhaps it just does not receive one after
the 'EHLO'.
This is not a regression, since it has not worked in past releases going back
to at least 1.0.
Platform:
Linux maestro 2.6.28-gentoo-r5 #1 SMP Fri May 29 00:23:31 CDT 2009 x86_64
Intel(R) Core(TM)2 CPU 6600 @ 2.40GHz GenuineIntel GNU/Linux
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=19653
Summary: Purchasing games in steam does not work
Product: Wine
Version: 1.1.27
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tonglebeak(a)gmail.com
I have no idea when this issue started, as I haven't purchased a steam game for
quite a long time (since last October I believe).
After entering credit card information and clicking on the submit button, the
button's text changes to "working" and animates with dots. However, steam does
not go anywhere else. I have tried this several times. In the end I used
store.steampowered.com in firefox and was able to purchase games just fine.
tldr; buying games in the Steam client does not work, but buying games off of
Steam's website does work.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=17907
Summary: build broken in dlls/ws2_32/tests/sock.c on OpenBSD 4.5
Product: Wine
Version: 1.1.18
Platform: PC
OS/Version: OpenBSD
Status: NEW
Keywords: download, source, testcase
Severity: blocker
Priority: P2
Component: build-env
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: austinenglish(a)gmail.com
gcc -c -I. -I. -I../../../include -I../../../include -D_REENTRANT -fPIC -Wall
-pipe -fno-strict-aliasing -Wwrite-strings -Wpointer-arith -I/usr/local/include
-I/usr/local/include -I/usr/local/include/libpng -o sock.o sock.c
In file included from sock.c:28:
../../../include/ws2tcpip.h:60: error: conflicting types for `socklen_t'
/usr/include/sys/types.h:163: error: previous declaration of `socklen_t'
*** Error code 1
Going for the easy way out and using #define USE_WS_PREFIX just breaks things
worse (see attached).
Looks a bit similar to 16661, so some more includes may help, but filing a bug
for now.
Kai, perhaps you could take a look? If you need SSH access, let me know.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.
http://bugs.winehq.org/show_bug.cgi?id=18290
Summary: Curse Client crashes since Curse.com enabled their
premium service
Product: Wine
Version: 1.1.20
Platform: PC
URL: http://www.curse.com/client/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: eiffel56(a)gmail.com
Created an attachment (id=20820)
--> (http://bugs.winehq.org/attachment.cgi?id=20820)
Output of wine with crashing Curse Client right after logging in
The Curse Client crashes since Curse.com enabled their premium
service(http://www.curse.com/articles/curse-en-news/462154.aspx). This is not a
regression in wine since it worked with exactly the same version(1.1.20) a few
hours ago. I also tested 1.1.14 and current git -> exactly the same.
Steps to reproduce:
1. Create a Curse.com account
2. Download and install the Curse Client
3. Create a new folder(e.g "WoW"). Create a folder called "Interface" in it,
and another folder called "Addons" in the Interface folder. Create a new file,
write something in it, and copy it as "Wow.exe" and "Launcher.exe". This is
needed to make the Curse Client think you have World of Warcraft installed. The
Client does also crash if you have a real World of Warcraft installation.
4. Open the Curse Client, click Manage Games->Add Game. Set Label to something,
Type to "World of Warcraft" and Install Path to the fake Wow folder you just
created.
5. Watch it crashing. If you start it up again, you will notice that it'll
crash again right after logging in.
I guess this is caused by that new ad that is shown in the client itself since
the premium service was enabled. It is not shown if you haven't registered at
least one game in Curse Client. It will not crash if you haven't added a game.
I will also attach the output of wine, which strengthens this theory.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
Do not reply to this email, post in Bugzilla using the
above URL to reply.
------- You are receiving this mail because: -------
You are watching all bug changes.