CVSROOT:        /cvsroot/wesnoth
Module name:    wesnoth
Branch:         
Changes by:     Guillaume Melquiond <[EMAIL PROTECTED]> 04/11/02 19:46:39

Modified files:
        src/widgets    : widget.cpp 

Log message:
        Fixed initialization order.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/widgets/widget.cpp.diff?tr1=1.22&tr2=1.23&r1=text&r2=text

Patches:
Index: wesnoth/src/widgets/widget.cpp
diff -u wesnoth/src/widgets/widget.cpp:1.22 wesnoth/src/widgets/widget.cpp:1.23
--- wesnoth/src/widgets/widget.cpp:1.22 Mon Nov  1 18:06:37 2004
+++ wesnoth/src/widgets/widget.cpp      Tue Nov  2 19:46:39 2004
@@ -9,8 +9,8 @@
 
 widget::widget(const widget &o)
        : events::handler(), disp_(o.disp_), restorer_(o.restorer_), 
rect_(o.rect_),
-         clip_rect_(o.clip_rect_), focus_(o.focus_), 
needs_restore_(o.needs_restore_),
-         state_(o.state_), volatile_(o.volatile_),
+         focus_(o.focus_), needs_restore_(o.needs_restore_),
+         state_(o.state_), clip_rect_(o.clip_rect_), volatile_(o.volatile_),
          help_text_(o.help_text_), help_string_(o.help_string_)
 {
 }


Reply via email to