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)
}
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)
Create(uri);
}
-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)
{
Assign(uri);
}
/* static */
void *wxDynamicLibrary::RawGetSymbol(wxDllType handle, const wxString& name)
{
- return ::GetProcAddress(handle, name.ToAscii());
+ return (void *)::GetProcAddress(handle, name.ToAscii());
}
// ----------------------------------------------------------------------------
#if wxUSE_STACKWALKER
+#ifndef WX_PRECOMP
+ #include "wx/string.h"
+#endif
+
#include "wx/stackwalk.h"
#include "wx/msw/debughlp.h"
{
frame->OnParam(pSymInfo);
}
-
+
// return true to continue enumeration, false would have stopped it
return TRUE;
}