1
0
mirror of git://projects.qi-hardware.com/gmenu2x.git synced 2024-07-02 18:47:19 +03:00

Make sure confirm() actually confirms.

The "result" field was never set to true.
The only way it could be true was because the uninitialized value happened to be non-zero.
Thanks to Ayla for this fix.
This commit is contained in:
Maarten ter Huurne 2010-07-26 04:31:16 +02:00
parent 727d9e95d5
commit 4738f4b232

View File

@ -189,6 +189,7 @@ void BrowseDialog::directoryEnter()
void BrowseDialog::confirm()
{
result = true;
close = true;
}