ALT Linux Bugzilla
– Attachment 1076 Details for
Bug 7795
При копировании выделенного текста подменяются пробелы
New bug
|
Search
|
[?]
|
Help
Register
|
Log In
[x]
|
Forgot Password
Login:
[x]
|
EN
|
RU
via clipboard
case_clipboard.txt (text/plain), 609 bytes, created by
Vitaly Lipatov
on 2005-08-30 18:00:55 MSD
(
hide
)
Description:
via clipboard
Filename:
MIME Type:
Creator:
Vitaly Lipatov
Created:
2005-08-30 18:00:55 MSD
Size:
609 bytes
patch
obsolete
>+/****************************************************************************** >+ * Translate file name from unix to ANSI encoding. >+ */ >+static void strcpyn_U2A(char *win_fn, UINT win_fn_len, const char *unix_fn) >+{ >+ UINT len; >+ WCHAR *unicode_fn; >+ >+ len = MultiByteToWideChar(CP_UNIXCP, 0, unix_fn, -1, NULL, 0); >+ unicode_fn = HeapAlloc(GetProcessHeap(), 0, len * sizeof(WCHAR)); >+ MultiByteToWideChar(CP_UNIXCP, 0, unix_fn, -1, unicode_fn, len); >+ >+ WideCharToMultiByte(CP_ACP, 0, unicode_fn, len, win_fn, win_fn_len, NULL, NULL); >+ HeapFree(GetProcessHeap(), 0, unicode_fn); >+} >+
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 7795
: 1076 |
1077
|
1078
|
1079