git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31434
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
WX_CLEAR_LIST(wxList, m_Handlers);
}
WX_CLEAR_LIST(wxList, m_Handlers);
}
-const static wxString g_unixPathString(wxT("/"));
-const static wxString g_nativePathString(wxFILE_SEP_PATH);
+static const wxString g_unixPathString(wxT("/"));
+static const wxString g_nativePathString(wxFILE_SEP_PATH);
// Returns the native path for a file URL
wxFileName wxFileSystem::URLToFileName(const wxString& url)
// Returns the native path for a file URL
wxFileName wxFileSystem::URLToFileName(const wxString& url)
}
wxConnectionBase::wxConnectionBase(wxConnectionBase& copy)
}
wxConnectionBase::wxConnectionBase(wxConnectionBase& copy)
- : m_connected(copy.m_connected),
+ : wxObject(),
+ m_connected(copy.m_connected),
m_buffer(copy.m_buffer),
m_buffersize(copy.m_buffersize),
m_deletebufferwhendone(false)
m_buffer(copy.m_buffer),
m_buffersize(copy.m_buffersize),
m_deletebufferwhendone(false)
-wxURI::wxURI(const wxURI& uri) : m_hostType(wxURI_REGNAME), m_fields(0)
+wxURI::wxURI(const wxURI& uri) : wxObject(), m_hostType(wxURI_REGNAME), m_fields(0)
/* static */
void *wxDynamicLibrary::RawGetSymbol(wxDllType handle, const wxString& name)
{
/* static */
void *wxDynamicLibrary::RawGetSymbol(wxDllType handle, const wxString& name)
{
- return ::GetProcAddress(handle, name.ToAscii());
+ return (void *)::GetProcAddress(handle, name.ToAscii());
}
// ----------------------------------------------------------------------------
}
// ----------------------------------------------------------------------------
+#ifndef WX_PRECOMP
+ #include "wx/string.h"
+#endif
+
#include "wx/stackwalk.h"
#include "wx/msw/debughlp.h"
#include "wx/stackwalk.h"
#include "wx/msw/debughlp.h"
{
frame->OnParam(pSymInfo);
}
{
frame->OnParam(pSymInfo);
}
// return true to continue enumeration, false would have stopped it
return TRUE;
}
// return true to continue enumeration, false would have stopped it
return TRUE;
}