mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
commit immediately post linking
This commit is contained in:
parent
aaea166135
commit
19bd641915
44 changed files with 504 additions and 406 deletions
|
|
@ -16,6 +16,11 @@ Text::Text (Group* parent)
|
|||
|
||||
}
|
||||
|
||||
Text::~Text ()
|
||||
{
|
||||
delete _font_description;
|
||||
}
|
||||
|
||||
void
|
||||
Text::set (string const & text)
|
||||
{
|
||||
|
|
@ -97,11 +102,11 @@ Text::set_alignment (Pango::Alignment alignment)
|
|||
}
|
||||
|
||||
void
|
||||
Text::set_font_description (Pango::FontDescription* font_description)
|
||||
Text::set_font_description (Pango::FontDescription font_description)
|
||||
{
|
||||
begin_change ();
|
||||
|
||||
_font_description = font_description;
|
||||
_font_description = new Pango::FontDescription (font_description);
|
||||
|
||||
_bounding_box_dirty = true;
|
||||
end_change ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue