GUI: Initialize class variables

This commit is contained in:
Eugene Sandulenko 2021-04-30 15:36:13 +02:00
parent 5fa661f1b0
commit ad50a1471a
No known key found for this signature in database
GPG key ID: 014D387312D34F08
2 changed files with 5 additions and 2 deletions

View file

@ -32,7 +32,7 @@ namespace GUI {
Tooltip::Tooltip() :
Dialog(-1, -1, -1, -1), _maxWidth(-1), _parent(nullptr), _xdelta(0), _ydelta(0) {
Dialog(-1, -1, -1, -1), _maxWidth(-1), _parent(nullptr), _xdelta(0), _ydelta(0), _xpadding(0), _ypadding(0) {
_backgroundType = GUI::ThemeEngine::kDialogBackgroundTooltip;
}