Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(71)

Side by Side Diff: fpdfsdk/src/pdfwindow/PWL_Label.cpp

Issue 1252613002: FX_BOOL considered harmful. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Manual edits. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fpdfsdk/src/pdfwindow/PWL_IconList.cpp ('k') | fpdfsdk/src/pdfwindow/PWL_ListBox.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "../../include/pdfwindow/PDFWindow.h" 7 #include "../../include/pdfwindow/PDFWindow.h"
8 #include "../../include/pdfwindow/PWL_Wnd.h" 8 #include "../../include/pdfwindow/PWL_Wnd.h"
9 #include "../../include/pdfwindow/PWL_Label.h" 9 #include "../../include/pdfwindow/PWL_Label.h"
10 #include "../../include/pdfwindow/PWL_Utils.h" 10 #include "../../include/pdfwindow/PWL_Utils.h"
(...skipping 21 matching lines...) Expand all
32 { 32 {
33 SetParamByFlag(); 33 SetParamByFlag();
34 SetFontSize(GetCreationParam().fFontSize); 34 SetFontSize(GetCreationParam().fFontSize);
35 35
36 m_pEdit->SetFontMap(GetFontMap()); 36 m_pEdit->SetFontMap(GetFontMap());
37 m_pEdit->Initialize(); 37 m_pEdit->Initialize();
38 38
39 if (HasFlag(PES_TEXTOVERFLOW)) 39 if (HasFlag(PES_TEXTOVERFLOW))
40 { 40 {
41 SetClipRect(CPDF_Rect(0.0f,0.0f,0.0f,0.0f)); 41 SetClipRect(CPDF_Rect(0.0f,0.0f,0.0f,0.0f));
42 » » m_pEdit->SetTextOverflow(TRUE); 42 » » m_pEdit->SetTextOverflow(true);
43 } 43 }
44 } 44 }
45 45
46 void CPWL_Label::SetText(const FX_WCHAR* csText) 46 void CPWL_Label::SetText(const FX_WCHAR* csText)
47 { 47 {
48 m_pEdit->SetText(csText); 48 m_pEdit->SetText(csText);
49 } 49 }
50 50
51 void CPWL_Label::RePosChildWnd() 51 void CPWL_Label::RePosChildWnd()
52 { 52 {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 } 178 }
179 179
180 int32_t CPWL_Label::GetTotalWords() 180 int32_t CPWL_Label::GetTotalWords()
181 { 181 {
182 if (m_pEdit) 182 if (m_pEdit)
183 return m_pEdit->GetTotalWords(); 183 return m_pEdit->GetTotalWords();
184 184
185 return 0; 185 return 0;
186 } 186 }
187 187
OLDNEW
« no previous file with comments | « fpdfsdk/src/pdfwindow/PWL_IconList.cpp ('k') | fpdfsdk/src/pdfwindow/PWL_ListBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698