| 121 | } |
| 122 | |
| 123 | TitleBar::TitleBar() |
| 124 | : mSpawnLists(this) |
| 125 | { |
| 126 | assert(TheTitleBar == nullptr); |
| 127 | TheTitleBar = this; |
| 128 | |
| 129 | mHelpDisplay = dynamic_cast<HelpDisplay*>(HelpDisplay::Create()); |
| 130 | mHelpDisplay->SetTypeName("helpdisplay", kModuleCategory_Other); |
| 131 | |
| 132 | mNewPatchConfirmPopup.SetTypeName("newpatchconfirm", kModuleCategory_Other); |
| 133 | mNewPatchConfirmPopup.SetName("newpatchconfirm"); |
| 134 | |
| 135 | SetShouldDrawOutline(false); |
| 136 | } |
| 137 | |
| 138 | void TitleBar::CreateUIControls() |
| 139 | { |
nothing calls this directly
no test coverage detected