Module: docs
Branch: master
Commit: da71254ced4b0162533d75fbcaa28ee36addde7b
URL: http://source.winehq.org/git/docs.git/?a=commit;h=da71254ced4b0162533d75fbc…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Mon May 10 21:06:26 2010 +0200
winedev: We have a stable release.
---
en/winedev-architecture.sgml | 7 -------
1 files changed, 0 insertions(+), 7 deletions(-)
diff --git a/en/winedev-architecture.sgml b/en/winedev-architecture.sgml
index 92290f5..e7c0caf 100644
--- a/en/winedev-architecture.sgml
+++ b/en/winedev-architecture.sgml
@@ -5,13 +5,6 @@
<sect1 id="basic-overview">
<title>Wine Overview</title>
- <para>
- With the fundamental architecture of Wine stabilizing, and
- people starting to think that we might soon be ready to
- actually release this thing, it may be time to take a look at
- how Wine actually works and operates.
- </para>
-
<sect2>
<title>Foreword</title>
<para>
Module: docs
Branch: master
Commit: 08fcaf1c4eb71c403d5203e7d2d044b924c4e114
URL: http://source.winehq.org/git/docs.git/?a=commit;h=08fcaf1c4eb71c403d5203e7d…
Author: André Hentschel <nerv(a)dawncrow.de>
Date: Mon May 10 21:06:10 2010 +0200
winedev: Fix a typo.
---
en/winedev-architecture.sgml | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/en/winedev-architecture.sgml b/en/winedev-architecture.sgml
index 09c4f96..d946f7d 100644
--- a/en/winedev-architecture.sgml
+++ b/en/winedev-architecture.sgml
@@ -207,7 +207,7 @@
<para>
<command>winevdm</command> is the Wine process dedicated to running the
Win16 processes. Note that several instances of this process could
- exist, has Windows has support for different VDM (Virtual Dos
+ exist, as Windows has support for different VDM (Virtual Dos
Machines) in order to have Win16 processes running in different
address spaces. Wine also uses the same architecture to run DOS
programs (in this case, the DOS emulation is provided by a Wine only
Module: wine
Branch: master
Commit: 9d6a10a43aa10e21c53123935d6bd12c654546a2
URL: http://source.winehq.org/git/wine.git/?a=commit;h=9d6a10a43aa10e21c53123935…
Author: Huw Davies <huw(a)codeweavers.com>
Date: Mon May 10 15:01:03 2010 +0100
oleaut32: Set the font to dirty when loading a new data.
---
dlls/oleaut32/olefont.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/dlls/oleaut32/olefont.c b/dlls/oleaut32/olefont.c
index df7de87..3c8c91f 100644
--- a/dlls/oleaut32/olefont.c
+++ b/dlls/oleaut32/olefont.c
@@ -1836,9 +1836,10 @@ static HRESULT WINAPI OLEFontImpl_Load(
MultiByteToWideChar( CP_ACP, 0, readBuffer, bStringSize, this->description.lpstrName, len );
this->description.lpstrName[len] = 0;
- /* Ensure use of this font causes a new one to be created @@@@ */
+ /* Ensure use of this font causes a new one to be created */
dec_int_ref(this->gdiFont);
this->gdiFont = 0;
+ this->dirty = TRUE;
return S_OK;
}