mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-25 02:49:46 +00:00
Use 'delete' for unimplemented constructors.
Thanks Yuriy!
This commit is contained in:
parent
aef74183c1
commit
b511d8d93e
@ -89,10 +89,10 @@ public:
|
|||||||
/// Can the cell contain several paragraphs?
|
/// Can the cell contain several paragraphs?
|
||||||
bool allowMultiPar() const override { return !isMultiRow && (!isMultiColumn || isFixedWidth); }
|
bool allowMultiPar() const override { return !isMultiRow && (!isMultiColumn || isFixedWidth); }
|
||||||
private:
|
private:
|
||||||
/// unimplemented
|
///
|
||||||
InsetTableCell();
|
InsetTableCell() = delete;
|
||||||
/// unimplemented
|
///
|
||||||
void operator=(InsetTableCell const &);
|
void operator=(InsetTableCell const &) = delete;
|
||||||
// FIXME
|
// FIXME
|
||||||
// These booleans are supposed to track whether the cell has had its
|
// These booleans are supposed to track whether the cell has had its
|
||||||
// width explicitly set and whether it is part of a multicolumn, respectively.
|
// width explicitly set and whether it is part of a multicolumn, respectively.
|
||||||
|
Loading…
Reference in New Issue
Block a user