summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorAugust Sodora <augsod@gmail.com>2011-12-08 13:27:22 -0500
committerAugust Sodora <augsod@gmail.com>2011-12-08 13:54:13 -0500
commit954c3b2d9afd451006deef59143f97d4ee0391fe (patch)
treeb343b98174aff016b7413cb3916e1442003e4f1b /basctl
parent7cf6d38eb6c89f174b71f74cb06d5e54c9fa12d0 (diff)
Remove unused code
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/breakpoint.cxx5
-rw-r--r--basctl/source/basicide/breakpoint.hxx1
2 files changed, 0 insertions, 6 deletions
diff --git a/basctl/source/basicide/breakpoint.cxx b/basctl/source/basicide/breakpoint.cxx
index 6bbfdf981016..1d28fec19b98 100644
--- a/basctl/source/basicide/breakpoint.cxx
+++ b/basctl/source/basicide/breakpoint.cxx
@@ -169,11 +169,6 @@ const BreakPoint* BreakPointList::at(size_t i) const
return i < maBreakPoints.size() ? maBreakPoints[ i ] : NULL;
}
-void BreakPointList::push_back(BreakPoint* item)
-{
- maBreakPoints.push_back( item );
-}
-
void BreakPointList::clear()
{
maBreakPoints.clear();
diff --git a/basctl/source/basicide/breakpoint.hxx b/basctl/source/basicide/breakpoint.hxx
index a989144b3a90..8d6ca9fe8bc1 100644
--- a/basctl/source/basicide/breakpoint.hxx
+++ b/basctl/source/basicide/breakpoint.hxx
@@ -70,7 +70,6 @@ public:
size_t size() const;
BreakPoint* at(size_t i);
const BreakPoint* at(size_t i) const;
- void push_back(BreakPoint* item);
void clear();
BreakPoint* remove(BreakPoint* ptr);
};