diff options
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/cellsuno.hxx | 3 | ||||
-rw-r--r-- | sc/inc/unonames.hxx | 2 | ||||
-rw-r--r-- | sc/inc/unowids.hxx | 4 |
3 files changed, 7 insertions, 2 deletions
diff --git a/sc/inc/cellsuno.hxx b/sc/inc/cellsuno.hxx index b654141dcab5..8e0a80668dec 100644 --- a/sc/inc/cellsuno.hxx +++ b/sc/inc/cellsuno.hxx @@ -653,7 +653,8 @@ private: void SetString_Impl(const OUString& rString, bool bInterpret, bool bEnglish); double GetValue_Impl() const; void SetValue_Impl(double fValue); - css::table::CellContentType GetResultType_Impl(); + css::table::CellContentType GetContentType_Impl(); + sal_Int32 GetResultType_Impl(); protected: virtual const SfxItemPropertyMap& GetItemPropertyMap() override; diff --git a/sc/inc/unonames.hxx b/sc/inc/unonames.hxx index f8bf85968615..0f61dcd2a7d4 100644 --- a/sc/inc/unonames.hxx +++ b/sc/inc/unonames.hxx @@ -209,6 +209,8 @@ #define SC_UNONAME_VALIXML "ValidationXML" #define SC_UNONAME_FORMLOC "FormulaLocal" #define SC_UNONAME_FORMRT "FormulaResultType" +#define SC_UNONAME_FORMRT2 "FormulaResultType2" +#define SC_UNONAME_CELLCONTENTTYPE "CellContentType" #define SC_UNONAME_USERDEF "UserDefinedAttributes" #define SC_UNONAME_TEXTUSER "TextUserDefinedAttributes" diff --git a/sc/inc/unowids.hxx b/sc/inc/unowids.hxx index e099dd2c27fb..492972941c63 100644 --- a/sc/inc/unowids.hxx +++ b/sc/inc/unowids.hxx @@ -73,7 +73,9 @@ #define SC_WID_UNO_TBLBORD2 ( SC_WID_UNO_START + 43 ) #define SC_WID_UNO_CONDFORMAT ( SC_WID_UNO_START + 44 ) #define SC_WID_UNO_FORMATID ( SC_WID_UNO_START + 45 ) -#define SC_WID_UNO_END ( SC_WID_UNO_START + 45 ) +#define SC_WID_UNO_FORMRT2 ( SC_WID_UNO_START + 46 ) +#define SC_WID_UNO_CELLCONTENTTYPE ( SC_WID_UNO_START + 47 ) +#define SC_WID_UNO_END ( SC_WID_UNO_START + 47 ) inline bool IsScUnoWid( sal_uInt16 nWid ) { |