diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-09 17:07:54 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-05-11 07:14:34 +0000 |
commit | 63ba54a168dbc777cdcec2393be476bdd5f79bc1 (patch) | |
tree | 48de29007d02ba4a982a50a1bd0138460e215c23 /sw/inc | |
parent | 7b9ea3348ac08d775ae452132239853724c65a41 (diff) |
convert EXTTEXTINPUT_ATTR to scoped enum
Change-Id: I94706bdea91d367fc8c2bbd482f6b4d8f55449d7
Reviewed-on: https://gerrit.libreoffice.org/24821
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/extinput.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/extinput.hxx b/sw/inc/extinput.hxx index 6e41d9559c38..28c962ef42c1 100644 --- a/sw/inc/extinput.hxx +++ b/sw/inc/extinput.hxx @@ -27,7 +27,7 @@ class CommandExtTextInputData; class SwExtTextInput : public SwPaM { - std::vector<sal_uInt16> aAttrs; + std::vector<ExtTextInputAttr> aAttrs; OUString sOverwriteText; bool bInsText : 1; bool bIsOverwriteCursor : 1; @@ -37,7 +37,7 @@ public: virtual ~SwExtTextInput(); void SetInputData( const CommandExtTextInputData& rData ); - const std::vector<sal_uInt16>& GetAttrs() const { return aAttrs; } + const std::vector<ExtTextInputAttr>& GetAttrs() const { return aAttrs; } void SetInsText( bool bFlag ) { bInsText = bFlag; } bool IsOverwriteCursor() const { return bIsOverwriteCursor; } void SetOverwriteCursor( bool bFlag ); |