Module: wine
Branch: master
Commit: 4aef5cb86dcb1e2692a233883f3fe102a5477334
URL: http://source.winehq.org/git/wine.git/?a=commit;h=4aef5cb86dcb1e2692a233883…
Author: Lei Zhang <thestig(a)google.com>
Date: Mon Apr 14 16:53:42 2008 -0700
user32: Do checks in the right order in EDIT_BuildLineDefs_ML.
---
dlls/user32/edit.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/user32/edit.c b/dlls/user32/edit.c
index b2bfe1c..c969ea2 100644
--- a/dlls/user32/edit.c
+++ b/dlls/user32/edit.c
@@ -1277,9 +1277,9 @@ static void EDIT_BuildLineDefs_ML(EDITSTATE *es, INT istart, INT iend, INT delta
current_line->width = (INT)LOWORD(GetTabbedTextExtentW(dc, current_position,
current_line->net_length, es->tabs_count, es->tabs));
}
- else if (orig_net_length < current_line->net_length &&
- current_line == start_line &&
- current_line->index != nstart_index) {
+ else if (current_line == start_line &&
+ current_line->index != nstart_index &&
+ orig_net_length < current_line->net_length) {
/* The previous line expanded but it's still not as wide as the client rect */
/* The expansion is due to an upwards line wrap so we must partially include
it in the update region */
Module: wine
Branch: master
Commit: 964d2d1629e5820972a806eb59b9a86469799b2d
URL: http://source.winehq.org/git/wine.git/?a=commit;h=964d2d1629e5820972a806eb5…
Author: Jonathan Ernst <jonathan(a)ernstfamily.ch>
Date: Mon Apr 14 23:27:46 2008 +0200
winecfg: Updated French translation.
---
programs/winecfg/Fr.rc | 21 +++++++++++++++++++--
1 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/programs/winecfg/Fr.rc b/programs/winecfg/Fr.rc
index 3514a42..d77d848 100644
--- a/programs/winecfg/Fr.rc
+++ b/programs/winecfg/Fr.rc
@@ -37,7 +37,7 @@ BEGIN
LTEXT PACKAGE_STRING,IDC_STATIC,119,17,120,8
CONTROL IDB_WINE,IDC_STATIC,"Static",SS_BITMAP ,15,17,157,111
LTEXT "http://www.winehq.org/",IDC_STATIC,119,31,106,8
- LTEXT "Cette biblioth�que est un logiciel libre�; vous pouvez la redistribuer et/ou la modifier conform�ment aux dispositions de la Licence Publique G�n�rale GNU, telle que publi�e par la Free Software Foundation�; version 2.1 de la licence, ou encore (� votre choix) toute version ult�rieure."
+ LTEXT "Cette biblioth�que est un logiciel libre�; vous pouvez la redistribuer et/ou la modifier suivant les termes de la Licence G�n�rale Publique Limit�e, telle que publi�e par la Free Software Foundation�; soit la version 2.1 de la License, soit (� votre gr�) toute version ult�rieure."
IDC_STATIC,119,44,124,72
END
@@ -64,6 +64,8 @@ BEGIN
CONTROL "Permettre aux applications DirectX d'emp�cher la souris de quitter leur fen�tre",IDC_DX_MOUSE_GRAB,"Button",BS_AUTOCHECKBOX | WS_TABSTOP | BS_MULTILINE,15,14,230,16
+ CONTROL "Allow the window manager to &decorate the windows",IDC_ENABLE_DECORATED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,30,230,8
+
CONTROL "Permettre au gestionnaire de &fen�tres de contr�ler les fen�tres",IDC_ENABLE_MANAGED,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,15,40,230,8
LTEXT "Si les fen�tres sont g�r�es par votre gestionnaire de fen�tres, elles auront des bordures standard, elles respecteront votre bureau virtuel et appara�tront dans la liste des fen�tres.\n\nSi les fen�tres ne sont pas g�r�es, elles seront d�connect�es de votre gestionnaire de fen�tres. Ceci signifie qu'elle ne seront pas parfaitement int�gr�es � votre bureau, mais que l'�mulation sera plus pr�cise ce qui permet � certains programmes de mieux fonctionner.",
IDC_STATIC,15,45,228,80
@@ -305,5 +307,20 @@ BEGIN
IDC_SYSPARAMS_ACTIVE_TITLE_TEXT "Texte de la barre de titre active"
IDC_SYSPARAMS_INACTIVE_TITLE "Barre de titre inactive"
IDC_SYSPARAMS_INACTIVE_TITLE_TEXT "Texte de la barre de titre inactive"
- IDC_SYSPARAMS_MSGBOX_TEXT "Message Box Text"
+ IDC_SYSPARAMS_MSGBOX_TEXT "Texte des bo�tes de messages"
+ IDC_SYSPARAMS_APPWORKSPACE "Espace de travail de l'application"
+ IDC_SYSPARAMS_WINDOW_FRAME "Cadre de la fen�tre"
+ IDC_SYSPARAMS_ACTIVE_BORDER "Bordure active"
+ IDC_SYSPARAMS_INACTIVE_BORDER "Bordure inactive"
+ IDC_SYSPARAMS_BUTTON_SHADOW "Ombre des contr�les"
+ IDC_SYSPARAMS_GRAY_TEXT "Texte gris"
+ IDC_SYSPARAMS_BUTTON_HILIGHT "Surbrillance des contr�les"
+ IDC_SYSPARAMS_BUTTON_DARK_SHADOW "Ombre sombre des contr�les"
+ IDC_SYSPARAMS_BUTTON_LIGHT "Lumi�re des contr�les"
+ IDC_SYSPARAMS_BUTTON_ALTERNATE "Fond alternatif des contr�les"
+ IDC_SYSPARAMS_HOT_TRACKING "�l�ment actif"
+ IDC_SYSPARAMS_ACTIVE_TITLE_GRADIENT "D�grad� de la barre de titre active"
+ IDC_SYSPARAMS_INACTIVE_TITLE_GRADIENT "D�grad� de la barre de titre inactive"
+ IDC_SYSPARAMS_MENU_HILIGHT "Surbrillance du menu"
+ IDC_SYSPARAMS_MENUBAR "Barre de menu"
END
Module: wine
Branch: master
Commit: 271f2eda14a1345044df11deeedb735435ad1015
URL: http://source.winehq.org/git/wine.git/?a=commit;h=271f2eda14a1345044df11dee…
Author: Maarten Lankhorst <m.b.lankhorst(a)gmail.com>
Date: Fri Apr 11 15:03:33 2008 -0700
include: Add dvdmedia stub header.
---
include/Makefile.in | 1 +
include/dvdmedia.h | 44 ++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 45 insertions(+), 0 deletions(-)
diff --git a/include/Makefile.in b/include/Makefile.in
index 11ee8b6..d03f7cf 100644
--- a/include/Makefile.in
+++ b/include/Makefile.in
@@ -180,6 +180,7 @@ SRCDIR_INCLUDES = \
dshow.h \
dsound.h \
dsrole.h \
+ dvdmedia.h \
dwmapi.h \
dxdiag.h \
dxerr8.h \
diff --git a/include/dvdmedia.h b/include/dvdmedia.h
new file mode 100644
index 0000000..9a29994
--- /dev/null
+++ b/include/dvdmedia.h
@@ -0,0 +1,44 @@
+/*
+ * Copyright (C) 2008 Maarten Lankhorst
+ *
+ * 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
+ */
+
+#ifndef __DVDMEDIA_H__
+#define __DVDMEDIA_H__
+
+#define AMCONTROL_USED 0x00000001
+#define AMCONTROL_PAD_TO_4x3 0x00000002
+#define AMCONTROL_PAD_TO_16x9 0x00000004
+
+typedef struct tagVIDEOINFOHEADER2 {
+ RECT rcSource;
+ RECT rcTarget;
+ DWORD dwBitRate;
+ DWORD dwBitErrorRate;
+ REFERENCE_TIME AvgTimePerFrame;
+ DWORD dwInterlaceFlags;
+ DWORD dwCopyProtectFlags;
+ DWORD dwPictAspectRatioX;
+ DWORD dwPictAspectRatioY;
+ union {
+ DWORD dwControlFlags;
+ DWORD dwReserved1;
+ } DUMMYUNIONNAME;
+ DWORD dwReserved2;
+ BITMAPINFOHEADER bmiHeader;
+} VIDEOINFOHEADER2;
+
+#endif /* __DVDMEDIA_H__ */