mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-17 10:52:46 +00:00
Fix the plString stuff that didn't get caught in the merge
This commit is contained in:
@ -256,13 +256,13 @@ int plMsgStdStringHelper::PokeBig(const char * buf, uint32_t bufsz, hsStream* st
|
||||
return stream->GetPosition();
|
||||
}
|
||||
|
||||
int plMsgStdStringHelper::Poke(const plString & stringref, hsStream* stream, const UInt32 peekOptions)
|
||||
int plMsgStdStringHelper::Poke(const plString & stringref, hsStream* stream, const uint32_t peekOptions)
|
||||
{
|
||||
std::string temp = stringref.c_str();
|
||||
return Poke(temp, stream, peekOptions);
|
||||
}
|
||||
|
||||
int plMsgStdStringHelper::PokeBig(const plString & stringref, hsStream* stream, const UInt32 peekOptions)
|
||||
int plMsgStdStringHelper::PokeBig(const plString & stringref, hsStream* stream, const uint32_t peekOptions)
|
||||
{
|
||||
std::string temp = stringref.c_str();
|
||||
return PokeBig(temp, stream, peekOptions);
|
||||
@ -313,7 +313,7 @@ int plMsgStdStringHelper::PeekBig(std::string & stringref, hsStream* stream, co
|
||||
return stream->GetPosition();
|
||||
}
|
||||
|
||||
int plMsgStdStringHelper::Peek(plString & stringref, hsStream* stream, const UInt32 peekOptions)
|
||||
int plMsgStdStringHelper::Peek(plString & stringref, hsStream* stream, const uint32_t peekOptions)
|
||||
{
|
||||
std::string temp;
|
||||
int pos = Peek(temp, stream, peekOptions);
|
||||
@ -321,7 +321,7 @@ int plMsgStdStringHelper::Peek(plString & stringref, hsStream* stream, const UIn
|
||||
return pos;
|
||||
}
|
||||
|
||||
int plMsgStdStringHelper::PeekBig(plString & stringref, hsStream* stream, const UInt32 peekOptions)
|
||||
int plMsgStdStringHelper::PeekBig(plString & stringref, hsStream* stream, const uint32_t peekOptions)
|
||||
{
|
||||
std::string temp;
|
||||
int pos = PeekBig(temp, stream, peekOptions);
|
||||
@ -399,12 +399,12 @@ int plMsgCStringHelper::Peek(char *& str, hsStream* stream, const uint32_t peekO
|
||||
return stream->GetPosition();
|
||||
}
|
||||
|
||||
int plMsgCStringHelper::Poke(const plString & str, hsStream* stream, const UInt32 peekOptions)
|
||||
int plMsgCStringHelper::Poke(const plString & str, hsStream* stream, const uint32_t peekOptions)
|
||||
{
|
||||
return Poke(str.c_str(), stream, peekOptions);
|
||||
}
|
||||
|
||||
int plMsgCStringHelper::Peek(plString & str, hsStream* stream, const UInt32 peekOptions)
|
||||
int plMsgCStringHelper::Peek(plString & str, hsStream* stream, const uint32_t peekOptions)
|
||||
{
|
||||
char * temp = nil;
|
||||
int pos = Peek(temp, stream, peekOptions);
|
||||
|
Reference in New Issue
Block a user