mirror of
git://projects.qi-hardware.com/gmenu2x.git
synced 2024-11-22 23:20:37 +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;
|
using namespace fastdelegate;
|
||||||
|
|
||||||
BrowseDialog::BrowseDialog(GMenu2X *gmenu2x, const string &title,
|
BrowseDialog::BrowseDialog(GMenu2X *gmenu2x, const string &title,
|
||||||
const string &subtitle) : Dialog(gmenu2x),
|
const string &subtitle)
|
||||||
title(title), subtitle(subtitle), buttonBox(gmenu2x)
|
: Dialog(gmenu2x)
|
||||||
|
, title(title)
|
||||||
|
, subtitle(subtitle)
|
||||||
|
, ts_pressed(false)
|
||||||
|
, buttonBox(gmenu2x)
|
||||||
{
|
{
|
||||||
IconButton *btn;
|
IconButton *btn;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user