actually this constructor is not used

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26427 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2008-09-16 13:21:30 +00:00
parent f3c202d287
commit 9bbe7251af
2 changed files with 0 additions and 10 deletions

View File

@ -34,14 +34,6 @@ Row::Row()
{} {}
Row::Row(pos_type pos)
: separator(0), label_hfill(0), x(0),
sel_beg(-1), sel_end(-1),
left_margin_sel(false), right_margin_sel(false),
changed_(false), crc_(0), pos_(pos), end_(0)
{}
void Row::setCrc(size_type crc) const void Row::setCrc(size_type crc) const
{ {
changed_ = crc != crc_; changed_ = crc != crc_;

View File

@ -34,8 +34,6 @@ public:
/// ///
Row(); Row();
/// ///
Row(pos_type pos);
///
bool changed() const { return changed_; } bool changed() const { return changed_; }
/// ///
void setChanged(bool c) { changed_ = c; } void setChanged(bool c) { changed_ = c; }