Module: wine
Branch: master
Commit: 3328ad6eb977b5e0d0208d71f4cbca7ea4400138
URL: http://source.winehq.org/git/wine.git/?a=commit;h=3328ad6eb977b5e0d0208d71f…
Author: Rob Shearman <rob(a)codeweavers.com>
Date: Wed Dec 5 16:09:58 2007 +0000
ole32: Initialise object variable in RunningObjectTableImpl_GetObject.
As per the rules for memory in RPC, the memory pointer to by object will
be used during unmarshalling and previously it was uninitialised.
(Thanks to Dan Kegel and his Valgrind runs for reporting this.)
---
dlls/ole32/moniker.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/ole32/moniker.c b/dlls/ole32/moniker.c
index c4975b9..cbb89e5 100644
--- a/dlls/ole32/moniker.c
+++ b/dlls/ole32/moniker.c
@@ -693,7 +693,7 @@ RunningObjectTableImpl_GetObject( IRunningObjectTable* iface,
{
RunningObjectTableImpl *This = (RunningObjectTableImpl *)iface;
MonikerComparisonData *moniker_data;
- InterfaceData *object;
+ InterfaceData *object = NULL;
IrotCookie cookie;
HRESULT hr;
struct rot_entry *rot_entry;
Module: wine
Branch: master
Commit: 8a00cb7be554597540c589239d20638c4bc07de3
URL: http://source.winehq.org/git/wine.git/?a=commit;h=8a00cb7be554597540c589239…
Author: Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com>
Date: Wed Dec 5 15:11:58 2007 +0100
browseui: Add Norwegian resources.
---
dlls/browseui/rsrc.rc | 1 +
dlls/browseui/rsrc_No.rc | 40 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 41 insertions(+), 0 deletions(-)
diff --git a/dlls/browseui/rsrc.rc b/dlls/browseui/rsrc.rc
index 9bc248c..5d367bd 100644
--- a/dlls/browseui/rsrc.rc
+++ b/dlls/browseui/rsrc.rc
@@ -27,3 +27,4 @@
#include "rsrc_En.rc"
#include "rsrc_Fr.rc"
#include "rsrc_Ko.rc"
+#include "rsrc_No.rc"
diff --git a/dlls/browseui/rsrc_No.rc b/dlls/browseui/rsrc_No.rc
new file mode 100644
index 0000000..a2eecdf
--- /dev/null
+++ b/dlls/browseui/rsrc_No.rc
@@ -0,0 +1,40 @@
+/*
+ * Norwegian Bokm�l language support
+ *
+ * Copyright 2007 Alexander N. S�rnes <alex(a)thehandofagony.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+
+LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
+
+STRINGTABLE
+{
+ IDS_CANCELLING "Avbryter . . ."
+}
+
+IDD_PROGRESS_DLG DIALOG 0, 0, 260, 85
+STYLE DS_MODALFRAME | DS_CENTER | WS_POPUP | WS_VISIBLE | WS_CLIPCHILDREN | WS_CAPTION | WS_SYSMENU
+CAPTION ""
+FONT 8, "MS Shell Dlg"
+{
+ CONTROL "", IDC_ANIMATION, ANIMATE_CLASSA, 0, 12, 10, 236, 25 /* TODO: style */
+ LTEXT "", IDC_TEXT_LINE, 7, 45, 250, 10, SS_LEFT|SS_NOPREFIX
+ LTEXT "", IDC_TEXT_LINE + 1, 7, 55, 250, 10, SS_LEFT|SS_NOPREFIX
+ CONTROL "", IDC_PROGRESS_BAR, PROGRESS_CLASSA, WS_BORDER, 7, 65, 190, 8
+ PUSHBUTTON "&Avbryt", IDCANCEL, 205, 65, 40, 15, WS_GROUP | WS_TABSTOP | WS_VISIBLE
+ LTEXT "", IDC_TEXT_LINE + 2, 7, 75, 190, 10, SS_LEFT|SS_NOPREFIX
+}
Module: wine
Branch: master
Commit: 5ca358469567237d13d61f3b5ab0012f11474419
URL: http://source.winehq.org/git/wine.git/?a=commit;h=5ca358469567237d13d61f3b5…
Author: Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com>
Date: Wed Dec 5 15:07:26 2007 +0100
write: Add Norwegian resources.
---
programs/write/No.rc | 26 ++++++++++++++++++++++++++
programs/write/rsrc.rc | 1 +
2 files changed, 27 insertions(+), 0 deletions(-)
diff --git a/programs/write/No.rc b/programs/write/No.rc
new file mode 100644
index 0000000..9b5a4bd
--- /dev/null
+++ b/programs/write/No.rc
@@ -0,0 +1,26 @@
+/*
+ * Norwegian Bokm�l language support
+ *
+ * Copyright (C) 2007 Alexander N. S�rnes <alex(a)thehandofagony.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
+
+STRINGTABLE
+{
+ IDS_FAILED, "Klarte ikke starte Wordpad"
+}
diff --git a/programs/write/rsrc.rc b/programs/write/rsrc.rc
index dd7caa6..a854b1a 100644
--- a/programs/write/rsrc.rc
+++ b/programs/write/rsrc.rc
@@ -25,3 +25,4 @@ LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
#include "En.rc"
#include "Fr.rc"
#include "Ko.rc"
+#include "No.rc"
Module: wine
Branch: master
Commit: 74379bea7bc07253ee6282c130f011b050deffdf
URL: http://source.winehq.org/git/wine.git/?a=commit;h=74379bea7bc07253ee6282c13…
Author: Alexander Nicolaysen Sørnes <alex(a)thehandofagony.com>
Date: Wed Dec 5 15:04:30 2007 +0100
wineboot: Add Norwegian resources.
---
programs/wineboot/wineboot.rc | 1 +
programs/wineboot/wineboot_No.rc | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+), 0 deletions(-)
diff --git a/programs/wineboot/wineboot.rc b/programs/wineboot/wineboot.rc
index 9623c45..369eace 100644
--- a/programs/wineboot/wineboot.rc
+++ b/programs/wineboot/wineboot.rc
@@ -30,4 +30,5 @@
#include "wineboot_En.rc"
#include "wineboot_Fr.rc"
#include "wineboot_Ko.rc"
+#include "wineboot_No.rc"
#include "wineboot_Sv.rc"
diff --git a/programs/wineboot/wineboot_No.rc b/programs/wineboot/wineboot_No.rc
new file mode 100644
index 0000000..b8ce1f5
--- /dev/null
+++ b/programs/wineboot/wineboot_No.rc
@@ -0,0 +1,35 @@
+/*
+ * WineBoot Norwegian Bokm�l resources
+ *
+ * Copyright (C) 2007 Alexander N. S�rnes <alex(a)thehandofagony.com>
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ *
+ */
+
+LANGUAGE LANG_NORWEGIAN, SUBLANG_NORWEGIAN_BOKMAL
+
+IDD_ENDTASK DIALOG DISCARDABLE 0, 0, 186, 71
+STYLE DS_MODALFRAME | DS_NOIDLEMSG | DS_CENTER | WS_POPUP | WS_CAPTION | WS_SYSMENU
+CAPTION "Venter p� program"
+FONT 8, "MS Shell Dlg"
+BEGIN
+ DEFPUSHBUTTON "Avbryt",IDCANCEL,129,49,50,15
+ PUSHBUTTON "Avslutt programmet",IDOK,51,49,71,15
+ LTEXT "En simulert avlogging eller avslutting har startet, men dette programmet svarer ikke.",
+ IDC_STATIC,7,7,172,19
+ LTEXT "Hvis du avslutter programmet kan all ulagret data g� tapt.",
+ IDC_STATIC,7,28,172,15
+END