http://bugs.winehq.org/show_bug.cgi?id=303
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|All |Other
OS/Version|All |other
--- Comment #5 from Austin English <austinenglish(a)gmail.com> 2012-02-23 15:08:57 CST ---
Removing deprecated 'All' Platform/OS.
--
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=394
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|All |Other
OS/Version|All |other
--- Comment #3 from Austin English <austinenglish(a)gmail.com> 2012-02-23 15:08:57 CST ---
Removing deprecated 'All' Platform/OS.
--
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=12181
Summary: SHELL32.dll.SHGetFolderPathAndSubDirA not supported
Product: Wine
Version: 0.9.58.
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P1
Component: ntdll
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: collinstocks(a)gmail.com
The program Adobe Premiere Pro requires a certain function in order to run that
is not implemented in wine yet.
Call from 0x102d2818 to unimplemented function
SHELL32.dll.SHGetFolderPathAndSubDirA
>From the name, it looks like it should be a pretty simple api to implement or
at least fake temporarily, although programming in C is not my strong point.
--
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=4
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|All |Other
OS/Version|All |other
--- Comment #3 from Austin English <austinenglish(a)gmail.com> 2012-02-23 15:08:56 CST ---
Removing deprecated 'All' Platform/OS.
--
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=278
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|All |Other
OS/Version|All |other
--- Comment #4 from Austin English <austinenglish(a)gmail.com> 2012-02-23 15:08:56 CST ---
Removing deprecated 'All' Platform/OS.
--
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=14479
Summary: Steam in-game community does not work
Product: Wine
Version: 1.1.1
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: -unknown
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: moose.g1(a)googlemail.com
Steam in-game community does not 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=469
Bob the Hamster <Bob-winehq(a)HamsterRepublic.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC|Bob-winehq@HamsterRepublic. |
|com |
--
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=13661
Summary: Edit Control Missing CUA Behavior for Ctrl-Home & Ctrl-
End
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: user32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bsmith(a)sudleyplace.com
The CUA behavior for Ctrl-Home and Ctrl-End is to move the cursor to the
start/end of the buffer -- this fix implements that behavior in edit.c.
Please someone create a patch to edit.c from the following code:
* In the declarations section, insert the text
--------------------------------------------------
static void EDIT_MoveBufferHome_ML(EDITSTATE *es);
static void EDIT_MoveBufferEnd_ML(EDITSTATE *es);
--------------------------------------------------
After the definition of (say) EDIT_MoveUp_ML, insert the text
--------------------------------------------------
/*********************************************************************
*
* EDIT_MoveBufferHome_ML
*
* Only for multi line controls
* Move the caret to the beginning of the buffer.
*
*/
static void EDIT_MoveBufferHome_ML(EDITSTATE *es)
{
EDIT_EM_SetSel(es, 0, 0, FALSE);
EDIT_EM_ScrollCaret(es);
}
/*********************************************************************
*
* EDIT_MoveBufferEnd_ML
*
* Only for multi line controls
* Move the caret to the end of the buffer.
*
*/
static void EDIT_MoveBufferEnd_ML(EDITSTATE *es)
{
INT e = get_text_length(es);
EDIT_EM_SetSel(es, e, e, TRUE);
EDIT_EM_ScrollCaret(es);
}
--------------------------------------------------
* After the line
--------------------------------------------------
case VK_HOME:
--------------------------------------------------
insert the text
--------------------------------------------------
if ((es->style & ES_MULTILINE) && control)
EDIT_MoveBufferHome_ML(es);
else
--------------------------------------------------
* After the line
--------------------------------------------------
case VK_END:
--------------------------------------------------
insert the text
--------------------------------------------------
if ((es->style & ES_MULTILINE) && control)
EDIT_MoveBufferEnd_ML(es);
else
--------------------------------------------------
--
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=9206
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|All |Other
OS/Version|All |other
--- Comment #3 from Austin English <austinenglish(a)gmail.com> 2012-02-23 15:08:52 CST ---
Removing deprecated 'All' Platform/OS.
--
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=522
Austin English <austinenglish(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|All |Other
OS/Version|All |other
--- Comment #7 from Austin English <austinenglish(a)gmail.com> 2012-02-23 15:08:51 CST ---
Removing deprecated 'All' Platform/OS.
--
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.