1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-04 20:52:56 +03:00

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

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;