diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2017-06-29 11:18:49 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-06-29 15:40:59 +0000 |
commit | f1eae2c37cb4bbf7a536cf251706147bbac51880 (patch) | |
tree | 8eead543163dddefc63a518d9d44b5ca1ee49875 /fpdfsdk/pdfwindow/cpwl_icon.cpp | |
parent | a0b48aa8043be95e5c6b602e0e261fb163282536 (diff) | |
download | pdfium-f1eae2c37cb4bbf7a536cf251706147bbac51880.tar.xz |
Converted low-hanging cpwl classes in CFX_ByteTextBuf to ostringstream.
Bug: pdfium:731
Change-Id: I3faf5a4ec4b2af6145348e526f39ccbc2055e62e
Reviewed-on: https://pdfium-review.googlesource.com/7050
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'fpdfsdk/pdfwindow/cpwl_icon.cpp')
-rw-r--r-- | fpdfsdk/pdfwindow/cpwl_icon.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/fpdfsdk/pdfwindow/cpwl_icon.cpp b/fpdfsdk/pdfwindow/cpwl_icon.cpp index 1464a09348..6650311915 100644 --- a/fpdfsdk/pdfwindow/cpwl_icon.cpp +++ b/fpdfsdk/pdfwindow/cpwl_icon.cpp @@ -7,6 +7,7 @@ #include "fpdfsdk/pdfwindow/cpwl_icon.h" #include <algorithm> +#include <sstream> #include "core/fpdfapi/parser/cpdf_array.h" #include "core/fpdfapi/parser/cpdf_stream.h" @@ -18,7 +19,7 @@ CPWL_Image::CPWL_Image() : m_pPDFStream(nullptr) {} CPWL_Image::~CPWL_Image() {} CFX_ByteString CPWL_Image::GetImageAppStream() { - CFX_ByteTextBuf sAppStream; + std::ostringstream sAppStream; CFX_ByteString sAlias = GetImageAlias(); CFX_FloatRect rcPlate = GetClientRect(); @@ -44,11 +45,11 @@ CFX_ByteString CPWL_Image::GetImageAppStream() { sAppStream << mt.a << " " << mt.b << " " << mt.c << " " << mt.d << " " << mt.e << " " << mt.f << " cm\n"; - sAppStream << "0 g 0 G 1 w /" << sAlias.AsStringC() << " Do\n" + sAppStream << "0 g 0 G 1 w /" << sAlias << " Do\n" << "Q\n"; } - return sAppStream.MakeString(); + return CFX_ByteString(sAppStream); } void CPWL_Image::SetPDFStream(CPDF_Stream* pStream) { |