Newly installed Hugin 2014 fails in wxDateTime in newly installed wxWidgets (3.0.2). Hugin 2013 works but doesn't use wxWidgets. See attachment for error message window. PTBatcherGUI may be at fault.
I'm on a MacPro OS 10.11.1 . Hugin 2014, wxWidgets 3.0.2. Simple two photo pano using Assistant and all default preference settings.
Just a guess that this wxWidgets code, in datetime.h, is where the error message comes from.
===============================================
inline time_t wxDateTime::GetTicks() const
{
wxASSERT_MSG( IsValid(), wxT("invalid wxDateTime"));
if ( !IsInStdRange() )
{
return (time_t)-1;
}
return (time_t)((m_time / (long)TIME_T_FACTOR).ToLong()) + WX_TIME_BASE_OFFSET;
}
==================================================
Chuck