diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-28 13:08:29 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-10-29 14:22:48 +0100 |
commit | 0ef5c47547bec6319b853326603f3b807407fe78 (patch) | |
tree | ced33b9ae621fa1cd807f8647a5149eed8bc743b /sc/inc/refdata.hxx | |
parent | 07bde58988705ca45a619eb7a4e670a5d951abf6 (diff) |
sc: rowcol: tdf#50916 convert core/tool
Change-Id: I0fe5a7ef4a79d0832802945ce1b9da4752f1d5fc
Reviewed-on: https://gerrit.libreoffice.org/81598
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc/inc/refdata.hxx')
-rw-r--r-- | sc/inc/refdata.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/inc/refdata.hxx b/sc/inc/refdata.hxx index 1274636d17da..f46e13e60821 100644 --- a/sc/inc/refdata.hxx +++ b/sc/inc/refdata.hxx @@ -90,14 +90,14 @@ public: void SetRelName( bool bVal ) { Flags.bRelName = bVal; } bool IsRelName() const { return Flags.bRelName; } - bool Valid() const; - bool ColValid() const; - bool RowValid() const; + bool Valid(const ScDocument* pDoc) const; + bool ColValid(const ScDocument* pDoc) const; + bool RowValid(const ScDocument* pDoc) const; bool TabValid() const; /** In external references nTab is -1 if the external document was not loaded but the sheet was cached, or >=0 if the external document was loaded. */ - bool ValidExternal() const; + bool ValidExternal(const ScDocument* pDoc) const; ScAddress toAbs( const ScAddress& rPos ) const; void SetAddress( const ScAddress& rAddr, const ScAddress& rPos ); @@ -144,12 +144,12 @@ struct ScComplexRefData /// InitFlags and set range, relative to rPos if rRef1 and rRef2 say so. void InitFromRefAddresses( const ScRefAddress& rRef1, const ScRefAddress& rRef2, const ScAddress& rPos ); - bool Valid() const; + bool Valid(const ScDocument* pDoc) const; /** In external references nTab is -1 for the start tab and -1 for the end tab if one sheet and the external document was not loaded but sheet was cached, or >=0 also if more than one sheets. */ - bool ValidExternal() const; + bool ValidExternal(const ScDocument* pDoc) const; /** Whether this references entire columns, A:A */ bool IsEntireCol() const @@ -185,12 +185,12 @@ struct ScComplexRefData /** Increment or decrement end column unless or until sticky. @see ScRange::IncEndColSticky() @return TRUE if changed. */ - bool IncEndColSticky( SCCOL nDelta, const ScAddress& rPos ); + bool IncEndColSticky( const ScDocument* pDoc, SCCOL nDelta, const ScAddress& rPos ); /** Increment or decrement end row unless or until sticky. @see ScRange::IncEndRowSticky() @return TRUE if changed. */ - bool IncEndRowSticky( SCROW nDelta, const ScAddress& rPos ); + bool IncEndRowSticky( const ScDocument* pDoc, SCROW nDelta, const ScAddress& rPos ); bool IsDeleted() const; |