1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-20 10:53:51 +00:00

Merged pull request #1890

This commit is contained in:
Marc Zinnschlag 2018-08-27 12:52:04 +02:00
commit 76013c4178
4 changed files with 6 additions and 0 deletions

View file

@ -153,6 +153,7 @@ Programmers
Siimacore Siimacore
sir_herrbatka sir_herrbatka
smbas smbas
Sophie Kirschner (pineapplemachine)
spycrab spycrab
Stefan Galowicz (bogglez) Stefan Galowicz (bogglez)
Stanislav Bobrov (Jiub) Stanislav Bobrov (Jiub)

View file

@ -132,6 +132,7 @@
Task #4545: Enable is_pod string test Task #4545: Enable is_pod string test
Task #4605: Optimize skinning Task #4605: Optimize skinning
Task #4606: Support Rapture3D's OpenAL driver Task #4606: Support Rapture3D's OpenAL driver
Task #4613: Incomplete type errors when compiling with g++ on OSX 10.9
0.44.0 0.44.0
------ ------

View file

@ -22,6 +22,8 @@ VideoWidget::VideoWidget()
setNeedKeyFocus(true); setNeedKeyFocus(true);
} }
VideoWidget::~VideoWidget() = default;
void VideoWidget::setVFS(const VFS::Manager *vfs) void VideoWidget::setVFS(const VFS::Manager *vfs)
{ {
mVFS = vfs; mVFS = vfs;

View file

@ -26,6 +26,8 @@ namespace MWGui
VideoWidget(); VideoWidget();
~VideoWidget();
/// Set the VFS (virtual file system) to find the videos on. /// Set the VFS (virtual file system) to find the videos on.
void setVFS(const VFS::Manager* vfs); void setVFS(const VFS::Manager* vfs);