Module: wine
Branch: master
Commit: 1cb8e96da9326faca581778769129870e9df1fe6
URL: http://source.winehq.org/git/wine.git/?a=commit;h=1cb8e96da9326faca58177876…
Author: Michael Stefaniuc <mstefani(a)redhat.de>
Date: Thu Apr 24 01:04:40 2008 +0200
start: Update the German translation.
---
programs/start/De.rc | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/programs/start/De.rc b/programs/start/De.rc
index bf0f5c5..600de90 100644
--- a/programs/start/De.rc
+++ b/programs/start/De.rc
@@ -61,4 +61,6 @@ Schau in die Datei COPYING.LIB f
"
STRING_EXECFAIL "Es konnte keine Anwendung gestartet werden, oder es ist keine Anwendung mit der angegebenen Datei verkn�pft.\nShellExecuteEx gescheitert"
+
+STRING_UNIXFAIL "Der angegebene Unix Dateiname konnte nicht in einen DOS Dateinamen umgewandelt werden."
}
Module: wine
Branch: master
Commit: 4165a1f696213fc6af67fd8abfb0e5d74729cc3e
URL: http://source.winehq.org/git/wine.git/?a=commit;h=4165a1f696213fc6af67fd8ab…
Author: Alex Villacís Lasso <a_villacis(a)palosanto.com>
Date: Wed Apr 23 09:48:44 2008 -0500
uxtheme: Skip creation of temporary bitmap when painting a single tile.
---
dlls/uxtheme/draw.c | 12 ++++++++++++
1 files changed, 12 insertions(+), 0 deletions(-)
diff --git a/dlls/uxtheme/draw.c b/dlls/uxtheme/draw.c
index 3650113..9c7d62b 100644
--- a/dlls/uxtheme/draw.c
+++ b/dlls/uxtheme/draw.c
@@ -345,6 +345,18 @@ static inline BOOL UXTHEME_SizedBlt (HDC hdcDst, int nXOriginDst, int nYOriginDs
if (!nWidthSrc || !nHeightSrc) return TRUE;
+ /* For destination width/height less than or equal to source
+ width/height, do not bother with memory bitmap optimization */
+ if (nWidthSrc >= nWidthDst && nHeightSrc >= nHeightDst)
+ {
+ int bltWidth = min (nWidthDst, nWidthSrc);
+ int bltHeight = min (nHeightDst, nHeightSrc);
+
+ return UXTHEME_Blt (hdcDst, nXOriginDst, nYOriginDst, bltWidth, bltHeight,
+ hdcSrc, nXOriginSrc, nYOriginSrc,
+ transparent, transcolor);
+ }
+
/* Create a DC with a bitmap consisting of a tiling of the source
bitmap, with standard GDI functions. This is faster than an
iteration with UXTHEME_Blt(). */
Module: wine
Branch: master
Commit: 6a422640530592116cb3fd48d8cb1ddb436bcce7
URL: http://source.winehq.org/git/wine.git/?a=commit;h=6a422640530592116cb3fd48d…
Author: Alex Villacís Lasso <a_villacis(a)palosanto.com>
Date: Wed Apr 23 09:45:53 2008 -0500
uxtheme: Fix nasty regression with painting of themed progress bar.
---
dlls/uxtheme/draw.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/uxtheme/draw.c b/dlls/uxtheme/draw.c
index 493cf0b..3650113 100644
--- a/dlls/uxtheme/draw.c
+++ b/dlls/uxtheme/draw.c
@@ -343,6 +343,8 @@ static inline BOOL UXTHEME_SizedBlt (HDC hdcDst, int nXOriginDst, int nYOriginDs
HDC hdcTemp;
BOOL result = FALSE;
+ if (!nWidthSrc || !nHeightSrc) return TRUE;
+
/* Create a DC with a bitmap consisting of a tiling of the source
bitmap, with standard GDI functions. This is faster than an
iteration with UXTHEME_Blt(). */