Initialize variables from the class

This commit is contained in:
smallmodel 2025-02-06 22:56:24 +01:00
parent 9922a7095b
commit e8f69e197c
No known key found for this signature in database
GPG key ID: 9F2D623CEDF08512

View file

@ -29,7 +29,9 @@ CLASS_DECLARATION(UIFloatingWindow, GameSpyDialog, NULL) {
};
GameSpyDialog::GameSpyDialog()
: overlay(NULL) {
: overlay(NULL)
, label(NULL)
, closeButton(NULL) {
AddFlag(WF_ALWAYS_TOP);
}