mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 18:15:32 +00:00
Gcc fixes
This commit is contained in:
parent
acdce6e0d0
commit
77e18a7f4b
2 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,7 @@ namespace Gui
|
|||
|
||||
class EditBox : public FontWrapper<MyGUI::EditBox>
|
||||
{
|
||||
MYGUI_RTTI_DERIVED( EditBox );
|
||||
MYGUI_RTTI_DERIVED( EditBox )
|
||||
|
||||
/// @param supportsVirtualKeyboard If true, VR mode will spawn a virtual keyboard whenever this widget is focused.
|
||||
EditBox(bool shouldSupportVirtualKeyboard = true);
|
||||
|
|
|
@ -1,4 +1,7 @@
|
|||
#include "virtualkeyboardmanager.hpp"
|
||||
|
||||
template<>
|
||||
Gui::VirtualKeyboardManager* MyGUI::Singleton<Gui::VirtualKeyboardManager>::msInstance = nullptr;
|
||||
|
||||
template<>
|
||||
const char* MyGUI::Singleton<Gui::VirtualKeyboardManager>::mClassTypeName = "Gui::VirtualKeyboardManager";
|
||||
|
|
Loading…
Reference in a new issue