blob: 61228ea82a71469137209338a898d0748cb22c53 [file] [log] [blame]
jaepark611adb82016-08-17 11:34:36 -07001// Copyright 2016 PDFium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6
dsinclair114e46a2016-09-29 17:18:21 -07007#include "fpdfsdk/pdfsdk_fieldaction.h"
jaepark611adb82016-08-17 11:34:36 -07008
9PDFSDK_FieldAction::PDFSDK_FieldAction()
tsepez4cf55152016-11-02 14:37:54 -070010 : bModifier(false),
11 bShift(false),
jaepark611adb82016-08-17 11:34:36 -070012 nCommitKey(0),
tsepez4cf55152016-11-02 14:37:54 -070013 bKeyDown(false),
jaepark611adb82016-08-17 11:34:36 -070014 nSelEnd(0),
15 nSelStart(0),
tsepez4cf55152016-11-02 14:37:54 -070016 bWillCommit(false),
17 bFieldFull(false),
18 bRC(true) {}