Module: wine
Branch: master
Commit: e364a4406a7d06c1ca3056d9c059c38f70bbffa3
URL: http://source.winehq.org/git/wine.git/?a=commit;h=e364a4406a7d06c1ca3056d9c…
Author: Dylan Smith <dylan.ah.smith(a)gmail.com>
Date: Tue Jul 21 00:22:12 2009 -0400
richedit: Added missing return to ME_EnsureVisible.
The missing return was to prevent automatic vertically scrolling when
style for it is not set, but is set for the horizontal scrollbar. I
initially missed this by testing with no autoscrolling on either
scrollbar.
---
dlls/riched20/paint.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/dlls/riched20/paint.c b/dlls/riched20/paint.c
index 2c1c9b9..4b5fed1 100644
--- a/dlls/riched20/paint.c
+++ b/dlls/riched20/paint.c
@@ -1263,7 +1263,10 @@ void ME_EnsureVisible(ME_TextEditor *editor, ME_Cursor *pCursor)
x = editor->horz_si.nPos;
if (~editor->styleFlags & ES_AUTOVSCROLL)
+ {
ME_HScrollAbs(editor, x);
+ return;
+ }
} else {
if (~editor->styleFlags & ES_AUTOVSCROLL)
return;
Module: wine
Branch: master
Commit: 9ec5d4388d8c65a46f154ed18ed33bfd96d90b36
URL: http://source.winehq.org/git/wine.git/?a=commit;h=9ec5d4388d8c65a46f154ed18…
Author: David Adam <david.adam.cnrs(a)gmail.com>
Date: Mon Jul 20 16:20:03 2009 +0200
d3dx9: Add forgotten copyrights.
---
dlls/d3dx9_36/tests/math.c | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/dlls/d3dx9_36/tests/math.c b/dlls/d3dx9_36/tests/math.c
index 610aa23..60d7193 100644
--- a/dlls/d3dx9_36/tests/math.c
+++ b/dlls/d3dx9_36/tests/math.c
@@ -1,6 +1,8 @@
/*
* Copyright 2008 David Adam
+ * Copyright 2008 Luis Busquets
* Copyright 2008 Philip Nilsson
+ * Copyright 2008 Henri Verbeet
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public