mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-22 12:36:17 +02:00
Fixed uninitialized field.
Thanks to Ayla for finding this bug.
This commit is contained in:
parent
90df129f66
commit
07fa091859
@ -9,8 +9,12 @@
|
||||
using namespace fastdelegate;
|
||||
|
||||
BrowseDialog::BrowseDialog(GMenu2X *gmenu2x, const string &title,
|
||||
const string &subtitle) : Dialog(gmenu2x),
|
||||
title(title), subtitle(subtitle), buttonBox(gmenu2x)
|
||||
const string &subtitle)
|
||||
: Dialog(gmenu2x)
|
||||
, title(title)
|
||||
, subtitle(subtitle)
|
||||
, ts_pressed(false)
|
||||
, buttonBox(gmenu2x)
|
||||
{
|
||||
IconButton *btn;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user