Fixed GCC warning about initialization order.

This commit is contained in:
Maarten ter Huurne
2012-04-10 19:28:01 +02:00
parent a881e78fb8
commit 92d221a1bd
+1 -1
View File
@@ -33,8 +33,8 @@ using namespace fastdelegate;
Link::Link(GMenu2X *gmenu2x_, Touchscreen &ts, LinkRunAction action_)
: Button(ts, true)
, gmenu2x(gmenu2x_)
, action(action_)
, gmenu2x(gmenu2x_)
{
action = MakeDelegate(this, &Link::run);
edited = false;