Delete long obsolete method HistroyScroll:getCell().

This method is not used anymore, so it should be safe to remove.
wilder-portage
Jekyll Wu 15 years ago
parent 45daca783f
commit 5e8a76c302
  1. 3
      src/History.h

@ -102,9 +102,6 @@ public:
virtual void getCells(int lineno, int colno, int count, Character res[]) = 0;
virtual bool isWrappedLine(int lineno) = 0;
// backward compatibility (obsolete)
Character getCell(int lineno, int colno) { Character res; getCells(lineno,colno,1,&res); return res; }
// adding lines.
virtual void addCells(const Character a[], int count) = 0;
// convenience method - this is virtual so that subclasses can take advantage

Loading…
Cancel
Save