mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Remove unused struct members
Interestingly, cppcheck detected that they were not initialized (see
8a047a41
), but not that they were unused.
This commit is contained in:
parent
03684ae05e
commit
78ae499355
@ -82,7 +82,7 @@ static void resetGrid(InsetMathGrid & grid)
|
||||
|
||||
|
||||
InsetMathGrid::CellInfo::CellInfo()
|
||||
: multi_(CELL_NORMAL), glue_(0), begin_(0), end_(0)
|
||||
: multi_(CELL_NORMAL)
|
||||
{}
|
||||
|
||||
|
||||
|
@ -44,13 +44,6 @@ public:
|
||||
Multicolumn multi_;
|
||||
/// special multi colums alignment
|
||||
docstring align_;
|
||||
/// these should be a per-cell property, but ok to have it here
|
||||
/// for single-column grids like paragraphs
|
||||
mutable int glue_;
|
||||
///
|
||||
mutable pos_type begin_;
|
||||
///
|
||||
mutable pos_type end_;
|
||||
};
|
||||
|
||||
/// additional per-row information
|
||||
|
Loading…
Reference in New Issue
Block a user