Suppress some warnings for MSVC.

pull/341/head
cc9cii 10 years ago
parent 19b380d0b4
commit e01795556f

@ -132,6 +132,7 @@ namespace MWGui
virtual int pageSplit();
protected:
virtual ~GraphicElement() {}
MyGUI::Widget * mParent;
Paginator & mPaginator;
BlockStyle mBlockStyle;

@ -12,6 +12,7 @@ class MovieAudioFactory
{
public:
virtual boost::shared_ptr<MovieAudioDecoder> createDecoder(VideoState* videoState) = 0;
virtual ~MovieAudioFactory() {}
};
}

@ -221,7 +221,7 @@ void VideoState::video_refresh()
}
else
{
const float threshold = 0.03;
const float threshold = 0.03f;
if (this->pictq[pictq_rindex].pts > this->get_master_clock() + threshold)
return; // not ready yet to show this picture

Loading…
Cancel
Save