mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
uses canonical foprm of clone()
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23331 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
058933bb94
commit
36ec5a880f
@ -376,11 +376,4 @@ void InsetQuotes::validate(LaTeXFeatures & features) const
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Inset * InsetQuotes::clone() const
|
||||
{
|
||||
return new InsetQuotes(language_, side_, times_);
|
||||
}
|
||||
|
||||
|
||||
} // namespace lyx
|
||||
|
@ -101,7 +101,7 @@ public:
|
||||
|
||||
private:
|
||||
///
|
||||
Inset * clone() const;
|
||||
Inset * clone() const { return new InsetQuotes(*this); }
|
||||
|
||||
///
|
||||
quote_language language_;
|
||||
|
Loading…
Reference in New Issue
Block a user