| OLD | NEW |
| 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_Button.h" | 9 #include "../../include/pdfwindow/PWL_Button.h" |
| 10 #include "../../include/pdfwindow/PWL_EditCtrl.h" | 10 #include "../../include/pdfwindow/PWL_EditCtrl.h" |
| (...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1206 m_pIcon(NULL), | 1206 m_pIcon(NULL), |
| 1207 m_pCloseBox(NULL), | 1207 m_pCloseBox(NULL), |
| 1208 m_pContentsBar(NULL), | 1208 m_pContentsBar(NULL), |
| 1209 m_pLBBox(NULL), | 1209 m_pLBBox(NULL), |
| 1210 m_pRBBox(NULL), | 1210 m_pRBBox(NULL), |
| 1211 m_pOptions(NULL), | 1211 m_pOptions(NULL), |
| 1212 m_bResizing(FALSE), | 1212 m_bResizing(FALSE), |
| 1213 m_rcCaption(0,0,0,0), | 1213 m_rcCaption(0,0,0,0), |
| 1214 m_pNoteNotify(pNoteNotify), | 1214 m_pNoteNotify(pNoteNotify), |
| 1215 m_bEnalbleNotify(TRUE), | 1215 m_bEnalbleNotify(TRUE), |
| 1216 » m_pPopupNote(pPopupNote), | 1216 » m_pPopupNote(pPopupNote) |
| 1217 » m_pNoteHandler(pNoteHandler) | |
| 1218 { | 1217 { |
| 1219 } | 1218 } |
| 1220 | 1219 |
| 1221 CPWL_Note::~CPWL_Note() | 1220 CPWL_Note::~CPWL_Note() |
| 1222 { | 1221 { |
| 1223 } | 1222 } |
| 1224 | 1223 |
| 1225 IPWL_NoteItem* CPWL_Note::Reply() | 1224 IPWL_NoteItem* CPWL_Note::Reply() |
| 1226 { | 1225 { |
| 1227 return CreateNoteItem(); | 1226 return CreateNoteItem(); |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1770 CFX_WideString CPWL_Note::GetReplyString() const | 1769 CFX_WideString CPWL_Note::GetReplyString() const |
| 1771 { | 1770 { |
| 1772 return m_sReplyString; | 1771 return m_sReplyString; |
| 1773 } | 1772 } |
| 1774 | 1773 |
| 1775 void CPWL_Note::SetReplyString(const CFX_WideString& string) | 1774 void CPWL_Note::SetReplyString(const CFX_WideString& string) |
| 1776 { | 1775 { |
| 1777 m_sReplyString = string; | 1776 m_sReplyString = string; |
| 1778 } | 1777 } |
| 1779 | 1778 |
| OLD | NEW |