Module: wine
Branch: master
Commit: b00b112fb6db2b3727b384afd5f9f939c4b29ce4
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b00b112fb6db2b3727b384afd…
Author: Anders Jonsson <anders.jonsson(a)norsjonet.se>
Date: Sun Nov 15 20:45:06 2009 +0100
mshtml: Update Swedish translation.
---
dlls/mshtml/Sv.rc | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/mshtml/Sv.rc b/dlls/mshtml/Sv.rc
index e9ba10e..c5a2cc8 100644
--- a/dlls/mshtml/Sv.rc
+++ b/dlls/mshtml/Sv.rc
@@ -33,9 +33,9 @@ STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CAPTION | WS_SYSMEN
CAPTION "Wine Gecko Installationsprogram"
FONT 8, "MS Shell Dlg"
{
- LTEXT "Wine could not find a Gecko package which is needed for applications embedding HTML " \
- "to work correctly. Wine can automatically download and install it for you.\n\n" \
- "Note: it's recommended to use distro packages instead. See http://wiki.winehq.org/Gecko for details.",
+ LTEXT "Wine kunde inte hitta paketet Gecko vilket kr�vs f�r att program med inb�ddad HTML " \
+ "ska fungera korrekt. Wine kan h�mta och installera det automatiskt �t dig.\n\n" \
+ "Obs: Du rekommenderas att anv�nda din distributions paket i st�llet. Se http://wiki.winehq.org/Gecko f�r mer information.",
ID_DWL_STATUS, 10, 10, 240, 50, SS_LEFT
CONTROL "F�rlopp", ID_DWL_PROGRESS, PROGRESS_CLASSA, WS_BORDER|PBS_SMOOTH, 10, 40, 240, 12
DEFPUSHBUTTON "&Installera", ID_DWL_INSTALL, 200, 70, 50, 15, WS_GROUP | WS_TABSTOP
Module: wine
Branch: master
Commit: b5139f45b35213161284f4b4505430624de7699d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=b5139f45b35213161284f4b45…
Author: Rob Shearman <robertshearman(a)gmail.com>
Date: Sun Nov 15 17:12:42 2009 +0000
oleaut32: Zero initialize the stack used on the server side of typelib marshalling.
This is needed to allow for NDR marshalling rules in reusing memory on
the client side.
---
dlls/oleaut32/tmarshal.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/tmarshal.c b/dlls/oleaut32/tmarshal.c
index b3d1734..eae17e2 100644
--- a/dlls/oleaut32/tmarshal.c
+++ b/dlls/oleaut32/tmarshal.c
@@ -2105,7 +2105,7 @@ TMStubImpl_Invoke(
nrofargs = 0;
for (i=0;i<fdesc->cParams;i++)
nrofargs += _argsize(&fdesc->lprgelemdescParam[i].tdesc, tinfo);
- args = HeapAlloc(GetProcessHeap(),0,(nrofargs+1)*sizeof(DWORD));
+ args = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,(nrofargs+1)*sizeof(DWORD));
if (!args)
{
hres = E_OUTOFMEMORY;