[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Wesnoth-cvs-commits] wesnoth/src/widgets button.cpp combo.cpp file_c...
From: |
Yann Dirson |
Subject: |
[Wesnoth-cvs-commits] wesnoth/src/widgets button.cpp combo.cpp file_c... |
Date: |
Mon, 22 Nov 2004 19:00:40 -0500 |
CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Yann Dirson <address@hidden> 04/11/22 23:54:27
Modified files:
src/widgets : button.cpp combo.cpp file_chooser.cpp label.cpp
scrollarea.cpp scrollbar.cpp scrollpane.cpp
slider.cpp textbox.cpp
Log message:
dos2unix
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/button.cpp.diff?tr1=1.50&tr2=1.51&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/combo.cpp.diff?tr1=1.25&tr2=1.26&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/file_chooser.cpp.diff?tr1=1.19&tr2=1.20&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/label.cpp.diff?tr1=1.4&tr2=1.5&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/scrollarea.cpp.diff?tr1=1.5&tr2=1.6&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/scrollbar.cpp.diff?tr1=1.23&tr2=1.24&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/scrollpane.cpp.diff?tr1=1.5&tr2=1.6&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/slider.cpp.diff?tr1=1.35&tr2=1.36&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/textbox.cpp.diff?tr1=1.66&tr2=1.67&r1=text&r2=text
Patches:
Index: wesnoth/src/widgets/button.cpp
diff -u wesnoth/src/widgets/button.cpp:1.50 wesnoth/src/widgets/button.cpp:1.51
--- wesnoth/src/widgets/button.cpp:1.50 Thu Nov 18 04:08:33 2004
+++ wesnoth/src/widgets/button.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: button.cpp,v 1.50 2004/11/18 04:08:33 Sirp Exp $ */
+/* $Id: button.cpp,v 1.51 2004/11/22 23:54:27 ydirson Exp $ */
/*
Copyright (C) 2003 by David White <address@hidden>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -10,8 +10,8 @@
See the COPYING file for more details.
*/
-
-#include "../global.hpp"
+
+#include "../global.hpp"
#include "button.hpp"
#include "../display.hpp"
Index: wesnoth/src/widgets/combo.cpp
diff -u wesnoth/src/widgets/combo.cpp:1.25 wesnoth/src/widgets/combo.cpp:1.26
--- wesnoth/src/widgets/combo.cpp:1.25 Thu Nov 18 04:08:33 2004
+++ wesnoth/src/widgets/combo.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: combo.cpp,v 1.25 2004/11/18 04:08:33 Sirp Exp $ */
+/* $Id: combo.cpp,v 1.26 2004/11/22 23:54:27 ydirson Exp $ */
/*
Copyright (C) 2003 by David White <address@hidden>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -10,8 +10,8 @@
See the COPYING file for more details.
*/
-
-#include "../global.hpp"
+
+#include "../global.hpp"
#include "combo.hpp"
#include "button.hpp"
Index: wesnoth/src/widgets/file_chooser.cpp
diff -u wesnoth/src/widgets/file_chooser.cpp:1.19
wesnoth/src/widgets/file_chooser.cpp:1.20
--- wesnoth/src/widgets/file_chooser.cpp:1.19 Thu Nov 18 20:41:33 2004
+++ wesnoth/src/widgets/file_chooser.cpp Mon Nov 22 23:54:27 2004
@@ -9,8 +9,8 @@
See the COPYING file for more details.
*/
-
-#include "../global.hpp"
+
+#include "../global.hpp"
#include "../display.hpp"
#include "../events.hpp"
@@ -91,8 +91,8 @@
void file_chooser::process_event() {
CKey key;
int mousex, mousey;
- SDL_GetMouseState(&mousex,&mousey);
-
+ SDL_GetMouseState(&mousex,&mousey);
+
// The menu does not implement focus functionality, so we fake
// it. We give the file list focus whenever the filename textbox
// does not have focus. Inflexible but easy solution.
Index: wesnoth/src/widgets/label.cpp
diff -u wesnoth/src/widgets/label.cpp:1.4 wesnoth/src/widgets/label.cpp:1.5
--- wesnoth/src/widgets/label.cpp:1.4 Thu Nov 18 04:08:33 2004
+++ wesnoth/src/widgets/label.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: label.cpp,v 1.4 2004/11/18 04:08:33 Sirp Exp $ */
+/* $Id: label.cpp,v 1.5 2004/11/22 23:54:27 ydirson Exp $ */
/*
Copyright (C) 2004 by Philippe Plantier <address@hidden>
Part of the Battle for Wesnoth Project http://www.wesnoth.org
@@ -10,8 +10,8 @@
See the COPYING file for more details.
*/
-
-#include "../global.hpp"
+
+#include "../global.hpp"
#include "label.hpp"
#include "../font.hpp"
Index: wesnoth/src/widgets/scrollarea.cpp
diff -u wesnoth/src/widgets/scrollarea.cpp:1.5
wesnoth/src/widgets/scrollarea.cpp:1.6
--- wesnoth/src/widgets/scrollarea.cpp:1.5 Thu Nov 18 04:08:33 2004
+++ wesnoth/src/widgets/scrollarea.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: scrollarea.cpp,v 1.5 2004/11/18 04:08:33 Sirp Exp $*/
+/* $Id: scrollarea.cpp,v 1.6 2004/11/22 23:54:27 ydirson Exp $*/
/*
Copyright (C) 2004 by Guillaume Melquiond <address@hidden>
Part of the Battle for Wesnoth Project http://www.wesnoth.org/
@@ -10,8 +10,8 @@
See the COPYING file for more details.
*/
-
-#include "../global.hpp"
+
+#include "../global.hpp"
#include "scrollarea.hpp"
#include "../display.hpp"
Index: wesnoth/src/widgets/scrollbar.cpp
diff -u wesnoth/src/widgets/scrollbar.cpp:1.23
wesnoth/src/widgets/scrollbar.cpp:1.24
--- wesnoth/src/widgets/scrollbar.cpp:1.23 Thu Nov 18 04:08:33 2004
+++ wesnoth/src/widgets/scrollbar.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: scrollbar.cpp,v 1.23 2004/11/18 04:08:33 Sirp Exp $*/
+/* $Id: scrollbar.cpp,v 1.24 2004/11/22 23:54:27 ydirson Exp $*/
/*
Copyright (C) 2003 by David White <address@hidden>
2004 by Guillaume Melquiond <address@hidden>
@@ -10,8 +10,8 @@
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
-*/
-
+*/
+
#include "../global.hpp"
#include "scrollbar.hpp"
Index: wesnoth/src/widgets/scrollpane.cpp
diff -u wesnoth/src/widgets/scrollpane.cpp:1.5
wesnoth/src/widgets/scrollpane.cpp:1.6
--- wesnoth/src/widgets/scrollpane.cpp:1.5 Thu Nov 18 04:08:33 2004
+++ wesnoth/src/widgets/scrollpane.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: scrollpane.cpp,v 1.5 2004/11/18 04:08:33 Sirp Exp $ */
+/* $Id: scrollpane.cpp,v 1.6 2004/11/22 23:54:27 ydirson Exp $ */
/*
Copyright (C) 2004 by Philippe Plantier <address@hidden>
Part of the Battle for Wesnoth Project http://www.wesnoth.org
@@ -10,10 +10,10 @@
See the COPYING file for more details.
*/
-
-#include "../global.hpp"
-
-#include <algorithm>
+
+#include "../global.hpp"
+
+#include <algorithm>
#include "scrollpane.hpp"
Index: wesnoth/src/widgets/slider.cpp
diff -u wesnoth/src/widgets/slider.cpp:1.35 wesnoth/src/widgets/slider.cpp:1.36
--- wesnoth/src/widgets/slider.cpp:1.35 Thu Nov 18 04:08:33 2004
+++ wesnoth/src/widgets/slider.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: slider.cpp,v 1.35 2004/11/18 04:08:33 Sirp Exp $ */
+/* $Id: slider.cpp,v 1.36 2004/11/22 23:54:27 ydirson Exp $ */
/*
Copyright (C) 2003 by David White <address@hidden>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -10,8 +10,8 @@
See the COPYING file for more details.
*/
-
-#include "../global.hpp"
+
+#include "../global.hpp"
#include "slider.hpp"
#include "../display.hpp"
Index: wesnoth/src/widgets/textbox.cpp
diff -u wesnoth/src/widgets/textbox.cpp:1.66
wesnoth/src/widgets/textbox.cpp:1.67
--- wesnoth/src/widgets/textbox.cpp:1.66 Thu Nov 18 20:35:21 2004
+++ wesnoth/src/widgets/textbox.cpp Mon Nov 22 23:54:27 2004
@@ -1,4 +1,4 @@
-/* $Id: textbox.cpp,v 1.66 2004/11/18 20:35:21 silene Exp $ */
+/* $Id: textbox.cpp,v 1.67 2004/11/22 23:54:27 ydirson Exp $ */
/*
Copyright (C) 2003 by David White <address@hidden>
Part of the Battle for Wesnoth Project http://wesnoth.whitevine.net
@@ -9,9 +9,9 @@
but WITHOUT ANY WARRANTY.
See the COPYING file for more details.
-*/
-
-#include "../global.hpp"
+*/
+
+#include "../global.hpp"
#include "textbox.hpp"
#include "../clipboard.hpp"
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Wesnoth-cvs-commits] wesnoth/src/widgets button.cpp combo.cpp file_c...,
Yann Dirson <=