Create text on second Part(volume) of object
This commit is contained in:
parent
936ba6c28c
commit
1078fe55ec
7 changed files with 151 additions and 52 deletions
|
@ -103,6 +103,15 @@ struct FontItem
|
|||
wx_mac_font_descr // path is font descriptor generated by wxWidgets on windows
|
||||
};
|
||||
|
||||
bool operator==(const FontItem &other) const {
|
||||
return
|
||||
type == other.type &&
|
||||
prop == other.prop &&
|
||||
name == other.name &&
|
||||
path == other.path
|
||||
;
|
||||
}
|
||||
|
||||
// undo / redo stack recovery
|
||||
template<class Archive> void serialize(Archive &ar)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue