mirror of https://github.com/PCSX2/pcsx2.git
Hurrah for gcc.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@2477 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
cf809cd1df
commit
6d9fb042cd
|
@ -83,7 +83,7 @@ template< typename ListenerType >
|
|||
class EventListenerBinding
|
||||
{
|
||||
public:
|
||||
typedef typename EventSource<ListenerType> EventSourceType;
|
||||
typedef typename EventSource<ListenerType>::EventSourceType EventSourceType;
|
||||
typedef typename EventSource<ListenerType>::ListenerIterator ListenerIterator;
|
||||
|
||||
protected:
|
||||
|
|
|
@ -101,6 +101,7 @@ protected:
|
|||
|
||||
public:
|
||||
pxLogTextCtrl(wxWindow* parent);
|
||||
~pxLogTextCtrl() throw();
|
||||
|
||||
bool HasWriteLock() const { return m_FreezeWrites; }
|
||||
void ConcludeIssue( int lines );
|
||||
|
|
|
@ -32,7 +32,7 @@ Dialogs::StuckThreadDialog::StuckThreadDialog( wxWindow* parent, StuckThreadActi
|
|||
L"The thread '%s' is not responding. It could be deadlocked, or it might "
|
||||
L"just be running *really* slowly."
|
||||
),
|
||||
stuck_thread.GetName()
|
||||
stuck_thread.GetName().data()
|
||||
) );
|
||||
|
||||
|
||||
|
|
|
@ -100,6 +100,10 @@ void pxLogTextCtrl::OnThumbRelease(wxScrollWinEvent& evt)
|
|||
evt.Skip();
|
||||
}
|
||||
|
||||
pxLogTextCtrl::~pxLogTextCtrl() throw()
|
||||
{
|
||||
}
|
||||
|
||||
void pxLogTextCtrl::ConcludeIssue( int lines )
|
||||
{
|
||||
if( HasWriteLock() ) return;
|
||||
|
|
Loading…
Reference in New Issue