fix uninitialised values

Origin commit data
------------------
Branch: ni/coolstream
Commit: f76dda36df
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2017-01-29 (Sun, 29 Jan 2017)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Jacek Jendrzej
2017-01-29 20:54:35 +01:00
parent 29063d58a8
commit 1d7e75990e
4 changed files with 5 additions and 1 deletions

View File

@@ -550,6 +550,7 @@ CMenuWidget::CMenuWidget()
info_box = NULL;
header = NULL;
nextShortcut = 1;
x = y = 0;
}
CMenuWidget::CMenuWidget(const neutrino_locale_t Name, const std::string & Icon, const int mwidth, const mn_widget_id_t &w_index)
@@ -624,6 +625,7 @@ void CMenuWidget::Init(const std::string &Icon, const int mwidth, const mn_widge
nextShortcut = 1;
saveScreen_width = 0;
saveScreen_height = 0;
x = y = 0;
}
void CMenuWidget::move(int xoff, int yoff)