diff options
author | nyamatongwe <unknown> | 2013-04-19 20:33:00 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2013-04-19 20:33:00 +1000 |
commit | 8b2018d41ba2e75691537d64771bd3651c309cf6 (patch) | |
tree | 9f9de536c3d3121fd39447ce9444e7015d1bc182 /src/PerLine.cxx | |
parent | c17ecd0761377ba11067ccfdd917c01aa8e7ed7c (diff) | |
download | scintilla-mirror-8b2018d41ba2e75691537d64771bd3651c309cf6.tar.gz |
Remove unused methods.
Diffstat (limited to 'src/PerLine.cxx')
-rw-r--r-- | src/PerLine.cxx | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/PerLine.cxx b/src/PerLine.cxx index 8eceae2ab..cc46fb9a2 100644 --- a/src/PerLine.cxx +++ b/src/PerLine.cxx @@ -45,17 +45,6 @@ int MarkerHandleSet::Length() const { return c; } -int MarkerHandleSet::NumberFromHandle(int handle) const { - MarkerHandleNumber *mhn = root; - while (mhn) { - if (mhn->handle == handle) { - return mhn->number; - } - mhn = mhn->next; - } - return - 1; -} - int MarkerHandleSet::MarkValue() const { unsigned int m = 0; MarkerHandleNumber *mhn = root; @@ -391,10 +380,6 @@ void LineAnnotation::RemoveLine(int line) { } } -bool LineAnnotation::AnySet() const { - return annotations.Length() > 0; -} - bool LineAnnotation::MultipleStyles(int line) const { if (annotations.Length() && (line >= 0) && (line < annotations.Length()) && annotations[line]) return reinterpret_cast<AnnotationHeader *>(annotations[line])->style == IndividualStyles; |