diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-11 17:15:18 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-11 20:18:19 +0000 |
commit | f3f6629a2ec9fc5f02d2102f2b4c6407f851208c (patch) | |
tree | 9a885cc1e3ab9d82dd6626f72169cd586c5fb169 /include/vcl | |
parent | cea2bd4d2d4601c22b6706c3ec334c4ad8b55c2d (diff) |
longparas: OldTextLen and DeltaStart are unused
Change-Id: Icfcbfece1954675cd4b8882f66726d80b7315e61
Diffstat (limited to 'include/vcl')
-rw-r--r-- | include/vcl/cmdevt.hxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/vcl/cmdevt.hxx b/include/vcl/cmdevt.hxx index 58b8b088afb7..e67a2a99e611 100644 --- a/include/vcl/cmdevt.hxx +++ b/include/vcl/cmdevt.hxx @@ -48,8 +48,6 @@ private: OUString maText; sal_uInt16* mpTextAttr; xub_StrLen mnCursorPos; - xub_StrLen mnDeltaStart; - xub_StrLen mnOldTextLen; sal_uInt16 mnCursorFlags; sal_Bool mbOnlyCursor; @@ -58,8 +56,6 @@ public: const sal_uInt16* pTextAttr, sal_Int32 nCursorPos, sal_uInt16 nCursorFlags, - sal_Int32 nDeltaStart, - sal_Int32 nOldTextLen, sal_Bool bOnlyCursor ); CommandExtTextInputData( const CommandExtTextInputData& rData ); ~CommandExtTextInputData(); @@ -71,8 +67,6 @@ public: sal_Bool IsCursorVisible() const { return (mnCursorFlags & EXTTEXTINPUT_CURSOR_INVISIBLE) == 0; } sal_Bool IsCursorOverwrite() const { return (mnCursorFlags & EXTTEXTINPUT_CURSOR_OVERWRITE) != 0; } sal_uInt16 GetCursorFlags() const { return mnCursorFlags; } - xub_StrLen GetDeltaStart() const { return mnDeltaStart; } - xub_StrLen GetOldTextLen() const { return mnOldTextLen; } sal_Bool IsOnlyCursorChanged() const { return mbOnlyCursor; } }; |