1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-07 03:54:40 +00:00

MSVC build compliance:

- static const float member is not ISO
- callback do not match DLL signature
This commit is contained in:
Sylvain THESNIERES 2012-06-08 19:55:39 +02:00
parent 7354d1eccb
commit fc3a3fc173
2 changed files with 6 additions and 6 deletions

View File

@ -16,10 +16,10 @@ namespace MWGui
SettingsWindow(WindowManager& parWindowManager);
private:
static const float sFovMin = 30;
static const float sFovMax = 140;
static const float sViewDistMin = 2000;
static const float sViewDistMax = 5600;
static int const sFovMin = 30;
static int const sFovMax = 140;
static int const sViewDistMin = 2000;
static int const sViewDistMax = 5600;
protected:
MyGUI::Button* mOkButton;

View File

@ -41,8 +41,8 @@ class OgreFile : public audiere::File
}
size_t refs;
virtual void ref() { ++refs; }
virtual void unref()
ADR_METHOD(void) ref() { ++refs; }
ADR_METHOD(void) unref()
{
if(--refs == 0)
delete this;