forked from organicmaps/organicmaps
[Tizen] timer destructor error
This commit is contained in:
parent
0823d0b580
commit
7eb92a5960
1 changed files with 3 additions and 3 deletions
|
@ -33,8 +33,8 @@ Framework::Framework(Tizen::Ui::Controls::Form * form)
|
|||
::Framework * pFramework = GetInstance();
|
||||
VideoTimer1 * m_VideoTimer = new VideoTimer1(bind(&Framework::Draw, this));
|
||||
RenderPolicy::Params params;
|
||||
params.m_screenHeight = form->GetHeight();
|
||||
params.m_screenWidth = form->GetWidth();
|
||||
params.m_screenHeight = form->GetClientAreaBounds().height;
|
||||
params.m_screenWidth = form->GetClientAreaBounds().width;
|
||||
params.m_useDefaultFB = true;
|
||||
params.m_skinName = "basic.skn";
|
||||
params.m_density = graphics::EDensityHDPI; // todo
|
||||
|
@ -65,7 +65,7 @@ Framework::Framework(Tizen::Ui::Controls::Form * form)
|
|||
|
||||
Framework::~Framework()
|
||||
{
|
||||
delete m_VideoTimer;
|
||||
//delete m_VideoTimer; ?? ERROR on timer destructor...
|
||||
}
|
||||
|
||||
::Framework* Framework::GetInstance()
|
||||
|
|
Loading…
Add table
Reference in a new issue