More warning and error fixes (work in progress with Tinderbox).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2005-05-31 19:03:56 +00:00
parent 60ec1c8778
commit 7942245db0
2 changed files with 12 additions and 11 deletions

View File

@@ -92,8 +92,8 @@ void spInterFileContext::InsertBookmarkSorted( BookmarkListT& lst, spBookmark& m
lst.push_back( mark ); lst.push_back( mark );
} }
void spInterFileContext::DoAppendSourceFragment( string& source, void spInterFileContext::DoAppendSourceFragment( wxString& source,
string& result, wxString& result,
size_t pos, size_t len ) size_t pos, size_t len )
{ {
mFiltered.erase( mFiltered.begin(), mFiltered.end() ); mFiltered.erase( mFiltered.begin(), mFiltered.end() );
@@ -132,8 +132,8 @@ void spInterFileContext::DoAppendSourceFragment( string& source,
} }
void spInterFileContext::GenerateContextBody( spContext& ctx, void spInterFileContext::GenerateContextBody( spContext& ctx,
string& source, wxString& source,
string& result, wxString& result,
size_t& lastSavedPos, size_t& lastSavedPos,
size_t& lastKnownPos ) size_t& lastKnownPos )
{ {

View File

@@ -59,15 +59,16 @@ protected:
void InsertBookmarkSorted( BookmarkListT& lst, spBookmark& mark ); void InsertBookmarkSorted( BookmarkListT& lst, spBookmark& mark );
void DoAppendSourceFragment( string& source, void DoAppendSourceFragment( wxString& source,
string& result, wxString& result,
size_t pos, size_t len ); size_t pos,
size_t len );
void GenerateContextBody( spContext& ctx, void GenerateContextBody( spContext& ctx,
string& source, wxString& source,
string& result, wxString& result,
size_t& lastSavedPos, size_t& lastSavedPos,
size_t& lastKnownPos ); size_t& lastKnownPos );
public: public: