Skip to content
Snippets Groups Projects
Commit b3acc0cf authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Revert "more format cleanup"

This reverts commit 0430171a.
parent 08cd3469
No related branches found
No related tags found
No related merge requests found
...@@ -66,15 +66,15 @@ std::string U64_to_str(U64 value) ...@@ -66,15 +66,15 @@ std::string U64_to_str(U64 value)
if (part1) if (part1)
{ {
res = absl::StrFormat("%u%07u%07u",part1,part2,part3); res = llformat("%u%07u%07u",part1,part2,part3);
} }
else if (part2) else if (part2)
{ {
res = absl::StrFormat("%u%07u",part2,part3); res = llformat("%u%07u",part2,part3);
} }
else else
{ {
res = absl::StrFormat("%u",part3); res = llformat("%u",part3);
} }
return res; return res;
} }
......
...@@ -2671,7 +2671,14 @@ BOOL LLTextEditor::importBuffer(const char* buffer, S32 length ) ...@@ -2671,7 +2671,14 @@ BOOL LLTextEditor::importBuffer(const char* buffer, S32 length )
BOOL LLTextEditor::exportBuffer(std::string &buffer ) BOOL LLTextEditor::exportBuffer(std::string &buffer )
{ {
buffer = absl::StrFormat("Linden text version 1\n{\nText length %d\n%s}\n", getLength(), getText()); std::ostringstream outstream(buffer);
outstream << "Linden text version 1\n";
outstream << "{\n";
outstream << llformat("Text length %d\n", getLength() );
outstream << getText();
outstream << "}\n";
return TRUE; return TRUE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment