aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/PerLine.cxx
diff options
context:
space:
mode:
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;