Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
b3acc0cf
Commit
b3acc0cf
authored
4 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Revert "more format cleanup"
This reverts commit
0430171a
.
parent
08cd3469
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
indra/llcommon/u64.cpp
+3
-3
3 additions, 3 deletions
indra/llcommon/u64.cpp
indra/llui/lltexteditor.cpp
+8
-1
8 additions, 1 deletion
indra/llui/lltexteditor.cpp
with
11 additions
and
4 deletions
indra/llcommon/u64.cpp
+
3
−
3
View file @
b3acc0cf
...
@@ -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
::
StrF
ormat
(
"%u%07u%07u"
,
part1
,
part2
,
part3
);
res
=
llf
ormat
(
"%u%07u%07u"
,
part1
,
part2
,
part3
);
}
}
else
if
(
part2
)
else
if
(
part2
)
{
{
res
=
absl
::
StrF
ormat
(
"%u%07u"
,
part2
,
part3
);
res
=
llf
ormat
(
"%u%07u"
,
part2
,
part3
);
}
}
else
else
{
{
res
=
absl
::
StrF
ormat
(
"%u"
,
part3
);
res
=
llf
ormat
(
"%u"
,
part3
);
}
}
return
res
;
return
res
;
}
}
...
...
This diff is collapsed.
Click to expand it.
indra/llui/lltexteditor.cpp
+
8
−
1
View file @
b3acc0cf
...
@@ -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
{
\n
Text 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
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment