http://bugs.winehq.org/show_bug.cgi?id=21449
Summary: Scrolling in Delphi 5 quickreport preview doesn't work
Product: Wine
Version: 1.1.36
Platform: x86
URL: http://home.scarlet.be/linux/compteco/pqr.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vincent.hardy.be(a)gmail.com
Run test program.
It's a proprietary previewer.
--
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=23944
Summary: Verizon Media Manager needs native Windows VB
scripting dlls to install
Product: Wine
Version: 1.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: spzakulec(a)gmail.com
Created an attachment (id=30054)
--> (http://bugs.winehq.org/attachment.cgi?id=30054)
Console output from trying to install the program with builtin dlls.
If I try to install Verizon Media Manager without having the native wsh56vb
installed from winetricks, I get stuck on the last screen before it starts
installing. That screen is right after the EULA, and has you put in a name for
share and where you would like to install it.
--
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=27708
Summary: GetThreadSelectorEntry fails
Product: Wine
Version: 1.2.2
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nitsuja-(a)hotmail.com
Created an attachment (id=35459)
--> (http://bugs.winehq.org/attachment.cgi?id=35459)
binary (and source code) of the test case
When a program calls GetThreadSelectorEntry after creating a process, it fails
in Wine (returns FALSE and sets lasterror to 5), but succeeds in Windows. This
is a problem for a program I made which needs this function to work, so I've
boiled it down to a tiny test case which still fails in the same way, and is
attached. When run on Windows, this exe brings up a messagebox saying "ALL OK",
but when run on Wine, it says "ERROR: GetThreadSelectorEntry failed". Here's
the source code:
#define WIN32_LEAN_AND_MEAN
#define _WIN32_WINNT 0x0500
#include <windows.h>
void AssertSuccess(BOOL success, const char* errorMessage);
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR
lpCmdLine, int nShowCmd)
{
// it doesn't matter which exe I start, so for this example I use the
current exe path
CHAR filename[MAX_PATH];
GetModuleFileName(NULL, filename, MAX_PATH);
STARTUPINFO startupInfo = {sizeof(STARTUPINFO)};
PROCESS_INFORMATION processInfo = {};
BOOL success = CreateProcess(filename, NULL, NULL, NULL, FALSE,
CREATE_SUSPENDED | DEBUG_PROCESS,
NULL, NULL, &startupInfo, &processInfo);
AssertSuccess(success, "ERROR: CreateProcess failed.\n");
HANDLE hThread = processInfo.hThread;
CONTEXT context;
context.ContextFlags = CONTEXT_SEGMENTS;
success = GetThreadContext(hThread, &context);
AssertSuccess(success, "ERROR: GetThreadContext failed.\n");
LDT_ENTRY ldtEntry;
success = GetThreadSelectorEntry(hThread, context.SegFs, &ldtEntry);
AssertSuccess(success, "ERROR: GetThreadSelectorEntry failed.\n");
if(success)
MessageBox(NULL, "ALL OK.", "DONE", MB_ICONASTERISK);
return success ? 0 : -1;
}
void AssertSuccess(BOOL success, const char* errorMessage)
{
if(!success)
MessageBox(NULL, errorMessage, "ERROR", MB_ICONERROR);
}
--
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=20732
Summary: Icons are not rendered 100% correctly in VB6 apps
(regression)
Product: Wine
Version: 1.1.33
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P2
Component: oleaut32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabmoa(a)yahoo.it
CC: thunderbird2k(a)gmail.com
Created an attachment (id=24783)
--> (http://bugs.winehq.org/attachment.cgi?id=24783)
Example application
An icon rendering problem is born between 1.1.25 and 1.1.26
In attachment there is a VB6 test project and screenshots of various
applications that suffer of this rendering problem.
(I hope is correct add Roderick Colenbrander mail to cc, otherwise sorry for
the mistake)
--
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=18234
Summary: Approach: Maximizing internalal minimized icon give
"About Wine"
Product: Wine
Version: 1.1.20
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ToddAndMargo(a)verizon.net
Created an attachment (id=20742)
--> (http://bugs.winehq.org/attachment.cgi?id=20742)
About wine instead of a maximized window
Hi All,
In Lotus Approach, if you use the internal windows control (the low set of
caption buttons) to minimize a single database, it will appear as an icon in
the lower right of Approach's window. If you double click on the icon to
maximize the window again, you get "About Wine 1.1.20" (and no maximized
window)
Many thanks,
-T
--
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=22974
Summary: "Shell folders" settings are reset after each wine
update
Product: Wine
Version: 1.2-rc1
Platform: x86
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: amdmi3(a)amdmi3.ru
Althrough I've disabled shell folder links (My Pictures, My Music, My Videos,
My Documents) by unchecking "Link to" checkbox for each of them in
winecfg->Desktop Integration->Shell Folders, after each wine update those
settings are reset and all folders are again linked to my home directory. That
is highly undesirable, as I'd prefer windows apps never access anything outside
.wine/drive_c.
--
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=17101
Summary: Cancelling text with Scientific Workplace leaves last
character
Product: Wine
Version: 1.1.13
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: loic.grenie(a)gmail.com
Created an attachment (id=18937)
--> (http://bugs.winehq.org/attachment.cgi?id=18937)
Screenshots
When I delete text under Scientific Workplace, the end of the line is not
treated correctly. Was is most evident is that the last character(s) is(are)
not canceled.
I attach a vertical concatenation of 3 screenshots:
the first is the state before hitting backspace: I typed "abcdefghijkl" and
added an inline image,
the second is after hitting backspace (I cancel the "g"); notice how the last
"kl" are not correctly canceled and the image is not moved to the left
and the third is how it should have looked.
No error message is displayed while hitting backspace (it complains about IME
all the time but I think it's no big deal).
I have seen this problem at least in versions 1.0.1 (under Debian testing,
Ubuntu hardy and intrepid, both 32 and 64 bits) and 1.0.13 (Debian testing 64
bits). The situation is even worse under Ubuntu intrepid (32 bits OS, Wine
v1.0.1) as text disappears as soon as it is typed (Esc redisplays it briefly).
I can live with the image (visible at the end of the line) not correctly
positioned after backspace (it seldom occurs), but the last character not
canceled is a real (visual) pain.
I can test anything you wish and I understand programming/debugging.
Thank you for any help.
SurJector
--
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=17272
Summary: Zmodeler: Icons and overall GUI blinky
Product: Wine
Version: 1.1.14
Platform: PC-x86-64
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=19272)
--> (http://bugs.winehq.org/attachment.cgi?id=19272)
Simple log of fixme's in the console
Zmodeler is not quite in full working condition (but tons better than prior to
1.1.14). When using the buttons on the Main Toolbar the icons which
occasionally disappear and overall 3D performance is rather slow. You can
mouseover the icons and they will reappear, but it isn't overly practical...
Attached is a log. I believe it has something to do with"LockWindowUpdate".
--
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=30827
Bug #: 30827
Summary: Uninitialized memory reference in
create_icon_pixmaps() -> GetDIBits() ->
bitmapinfoheader_from_user_bitmapinfo()
Product: Wine
Version: 1.5.5
Platform: x86
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: gdi32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Classification: Unclassified
While looking at bug 30826, I saw
Conditional jump or move depends on uninitialised value(s)
at bitmapinfoheader_from_user_bitmapinfo (dib.c:177)
by GetDIBits (dib.c:1210)
by create_icon_pixmaps.isra.8 (window.c:883)
create_icon_pixmaps calls GetDIBits with bits=NULL and a mostly uninitialized
info, but bitmapinfoheader_from_user_bitmapinfo() assumes that biCompression
has already been initialized.
gdi32/dib.c:
149 static BOOL bitmapinfoheader_from_user_bitmapinfo( BITMAPINFOHEADER
*dst, const BITMAPINFOHEADER *info )
150 {
...
166 else if (info->biSize >= sizeof(BITMAPINFOHEADER)) /* assume
BITMAPINFOHEADER */
167 {
168 *dst = *info;
169 }
...
176 dst->biSize = sizeof(*dst);
177 if (dst->biCompression == BI_RGB || dst->biCompression ==
BI_BITFIELDS)
178 dst->biSizeImage = get_dib_image_size( (BITMAPINFO *)dst );
1187 INT WINAPI GetDIBits(
1188 HDC hdc, /* [in] Handle to device context */
1189 HBITMAP hbitmap, /* [in] Handle to bitmap */
1190 UINT startscan, /* [in] First scan line to set in dest bitmap */
1191 UINT lines, /* [in] Number of scan lines to copy */
1192 LPVOID bits, /* [out] Address of array for bitmap bits */
1193 BITMAPINFO * info, /* [in,out] Address of structure with bitmap
data */
1194 UINT coloruse) /* [in] RGB or palette index */
1195 {
...
1208 /* Since info may be a BITMAPCOREINFO or any of the larger
BITMAPINFO structures, we'll use our
1209 own copy and transfer the colour info back at the end */
1210 if (!bitmapinfoheader_from_user_bitmapinfo( &dst_info->bmiHeader,
&info->bmiHeader )) return 0;
....
1212 if (bits &&
1213 (dst_info->bmiHeader.biCompression == BI_JPEG ||
dst_info->bmiHeader.biCompression == BI_PNG))
winex11.drv/window.c:
868 static BOOL create_icon_pixmaps( HDC hdc, const ICONINFO *icon, struct
x11drv_win_data *data )
869 {
870 char buffer[FIELD_OFFSET( BITMAPINFO, bmiColors[256] )];
871 BITMAPINFO *info = (BITMAPINFO *)buffer;
...
881 info->bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
882 info->bmiHeader.biBitCount = 0;
883 if (!(lines = GetDIBits( hdc, icon->hbmColor, 0, 0, NULL, info,
DIB_RGB_COLORS ))) goto failed;
Note that GetDIBits is careful to avoid referencing biCompression itself
when bits is NULL, but the function it calls doesn't know whether bits is NULL.
(bug 30266 is nearby but doesn't seem related?)
--
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=27570
Summary: Aliens Vs Predator 2 Demo is temporary confined
ingame.
Product: Wine
Version: 1.3.22
Platform: x86
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew.millington(a)gmail.com
I've tried the marine demo at the start the mouse movement is confined like bug
#6971 until you right click or over time, it works as per usual after this plus
"Automatically capture the mouse input in full-screen window" changes nothing.
Make fmv videos not accessible to speed up testing.
I haven't tested when you start the next level due to being a demo.
--
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.