mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Explicit InsetTableCell copy constructor
Use explicit default syntax (C++11). Adapted from: commitbff97ba76d
commit3d46cc302b
This commit is contained in:
parent
09b340a45e
commit
dfa97f80d9
@ -53,6 +53,9 @@ class InsetTableCell : public InsetText
|
|||||||
public:
|
public:
|
||||||
///
|
///
|
||||||
InsetTableCell(Buffer * buf);
|
InsetTableCell(Buffer * buf);
|
||||||
|
/// We need this since generation of the default is deprecated
|
||||||
|
/// (since we declare the assignment constuctor below).
|
||||||
|
InsetTableCell(InsetTableCell const & in) = default;
|
||||||
///
|
///
|
||||||
InsetCode lyxCode() const { return CELL_CODE; }
|
InsetCode lyxCode() const { return CELL_CODE; }
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user