summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-20 09:53:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-20 10:16:17 +0100
commit5059984c44379d09eabf740c21db062b925394ad (patch)
tree431570359b1cf6ea640e4db9503a7afad98c2e01 /include
parent98f2bd667c45ad8d041673c99678e2f95a749b55 (diff)
PendingOverflowCheck in TextChain is unused
Change-Id: I575865d79fc279ec017b6af461003f77e9c6073c Reviewed-on: https://gerrit.libreoffice.org/83258 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svx/textchain.hxx14
1 files changed, 0 insertions, 14 deletions
diff --git a/include/svx/textchain.hxx b/include/svx/textchain.hxx
index cfb69f6fe85c..cba226c98ff2 100644
--- a/include/svx/textchain.hxx
+++ b/include/svx/textchain.hxx
@@ -52,7 +52,6 @@ protected:
aPreChainingSel = ESelection(0,0,0,0);
aPostChainingSel = ESelection(0,0,0,0);
aIsPartOfLastParaInNextLink = false; // XXX: Should come from file
- aPendingOverflowCheck = false;
aSwitchingToNextBox = false;
}
@@ -63,7 +62,6 @@ private:
ESelection aPreChainingSel;
ESelection aPostChainingSel;
bool aIsPartOfLastParaInNextLink;
- bool aPendingOverflowCheck;
bool aSwitchingToNextBox;
};
@@ -73,12 +71,6 @@ class TextChain
public:
~TextChain();
- //void AppendLink(SdrTextObj *);
- //bool IsLinkInChain(SdrTextObj *) const;
-
- //SdrTextObj *GetNextLink(const SdrTextObj *) const;
- //SdrTextObj *GetPrevLink(const SdrTextObj *) const;
-
ImpChainLinkProperties *GetLinkProperties(const SdrTextObj *);
// Specific Link Properties
@@ -98,10 +90,6 @@ public:
bool GetIsPartOfLastParaInNextLink(const SdrTextObj *);
void SetIsPartOfLastParaInNextLink(const SdrTextObj *, bool );
- // return whether there is a pending overflow check (usually when we move cursor after an overflow in the prev link)
- bool GetPendingOverflowCheck(const SdrTextObj *);
- void SetPendingOverflowCheck(const SdrTextObj *, bool );
-
// return whether we are currently moving the cursor to the next box (useful to know whether we should prevent SetOutlinerParaObject invocations in SdrTextObj::EndTextEdit)
bool GetSwitchingToNextBox(const SdrTextObj *);
void SetSwitchingToNextBox(const SdrTextObj *, bool);
@@ -113,8 +101,6 @@ private:
std::map< ChainLinkId, ImpChainLinkProperties *> maLinkPropertiesMap;
friend class SdrModel;
- //SdrTextObj *impGetNextLink(const SdrTextObj *) const;
- //SdrTextObj *impGetPrevLink(const SdrTextObj *) const;
};
#endif // INCLUDED_SVX_TEXTCHAIN_HXX