mirror of https://github.com/PCSX2/pcsx2.git
Attack of the non-POD type objects.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2236 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
4116c7d379
commit
bb64ecfcf2
|
@ -654,13 +654,13 @@ __forceinline s32 Threading::AtomicDecrement( volatile s32& Target )
|
|||
// --------------------------------------------------------------------------------------
|
||||
|
||||
wxString Exception::BaseThreadError::FormatDiagnosticMessage() const
|
||||
{
|
||||
return wxsFormat( m_message_diag, (m_thread==NULL) ? L"Null Thread Object" : m_thread->GetName() );
|
||||
{
|
||||
return wxsFormat( m_message_diag, (m_thread==NULL) ? L"Null Thread Object" : m_thread->GetName().c_str());
|
||||
}
|
||||
|
||||
wxString Exception::BaseThreadError::FormatDisplayMessage() const
|
||||
{
|
||||
return wxsFormat( m_message_user, (m_thread==NULL) ? _("Null Thread Object") : m_thread->GetName() );
|
||||
{
|
||||
return wxsFormat( m_message_user, (m_thread==NULL) ? L"Null Thread Object" : m_thread->GetName().c_str());
|
||||
}
|
||||
|
||||
PersistentThread& Exception::BaseThreadError::Thread()
|
||||
|
|
Loading…
Reference in New Issue