Converted tabs to spaces.

This commit is contained in:
Roman Donchenko
2013-08-21 18:52:15 +04:00
parent e9a28f66ee
commit 3c137f7a04
33 changed files with 755 additions and 755 deletions

View File

@@ -343,8 +343,8 @@ void CvCapture_FFMPEG::close()
class ImplMutex
{
public:
ImplMutex() { init(); }
~ImplMutex() { destroy(); }
ImplMutex() { init(); }
~ImplMutex() { destroy(); }
void init();
void destroy();
@@ -447,14 +447,14 @@ struct ImplMutex::Impl
void ImplMutex::init()
{
impl = (Impl*)malloc(sizeof(Impl));
impl->init();
impl = (Impl*)malloc(sizeof(Impl));
impl->init();
}
void ImplMutex::destroy()
{
impl->destroy();
free(impl);
impl = NULL;
impl->destroy();
free(impl);
impl = NULL;
}
void ImplMutex::lock() { impl->lock(); }
void ImplMutex::unlock() { impl->unlock(); }