diff options
author | Dennis Francis <dennisfrancis.in@gmail.com> | 2015-10-17 10:45:53 +0530 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-03-11 21:45:26 +0000 |
commit | 7bc97db5b972f27693161beb9182f8a5850f5551 (patch) | |
tree | a8d8fce3ef4eddd7de753ae8db2518f2f41e01ef /sc/inc | |
parent | 97c872d015350810fb0180ffdb10de7f039363a4 (diff) |
tdf#42629 : Allow multiple status bar functions at a time
Change-Id: Ide9ced5ff4cedebd41a85814f74549648a896f16
Reviewed-on: https://gerrit.libreoffice.org/22060
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/appoptio.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/inc/appoptio.hxx b/sc/inc/appoptio.hxx index 8c014202af1b..a3fc72406f9e 100644 --- a/sc/inc/appoptio.hxx +++ b/sc/inc/appoptio.hxx @@ -49,8 +49,8 @@ public: sal_uInt16* GetLRUFuncList() const { return pLRUList; } void SetLRUFuncList( const sal_uInt16* pList, const sal_uInt16 nCount ); - void SetStatusFunc( sal_uInt16 nNew ) { nStatusFunc = nNew; } - sal_uInt16 GetStatusFunc() const { return nStatusFunc; } + void SetStatusFunc( sal_uInt32 nNew ) { nStatusFunc = nNew; } + sal_uInt32 GetStatusFunc() const { return nStatusFunc; } void SetAutoComplete( bool bNew ) { bAutoComplete = bNew; } bool GetAutoComplete() const { return bAutoComplete; } void SetDetectiveAuto( bool bNew ) { bDetectiveAuto = bNew; } @@ -87,7 +87,7 @@ private: SvxZoomType eZoomType; sal_uInt16 nZoom; bool bSynchronizeZoom; - sal_uInt16 nStatusFunc; + sal_uInt32 nStatusFunc; bool bAutoComplete; bool bDetectiveAuto; sal_uInt32 nTrackContentColor; |