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

Initialize field using init syntax instead of assignment.

No functional change.
This commit is contained in:
Maarten ter Huurne 2010-07-26 03:36:55 +02:00
parent 5f45c67bb5
commit 90df129f66

View File

@ -23,9 +23,10 @@
using namespace std;
WallpaperDialog::WallpaperDialog(GMenu2X *gmenu2x) : Dialog(gmenu2x)
WallpaperDialog::WallpaperDialog(GMenu2X *gmenu2x)
: Dialog(gmenu2x)
, selRow(0)
{
selRow = 0;
}
bool WallpaperDialog::exec()