aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PerLine.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2013-04-19 20:33:00 +1000
committernyamatongwe <unknown>2013-04-19 20:33:00 +1000
commit8b2018d41ba2e75691537d64771bd3651c309cf6 (patch)
tree9f9de536c3d3121fd39447ce9444e7015d1bc182 /src/PerLine.cxx
parentc17ecd0761377ba11067ccfdd917c01aa8e7ed7c (diff)
downloadscintilla-mirror-8b2018d41ba2e75691537d64771bd3651c309cf6.tar.gz
Remove unused methods.
Diffstat (limited to 'src/PerLine.cxx')
-rw-r--r--src/PerLine.cxx15
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;