]> git.lyx.org Git - lyx.git/blobdiff - src/insets/RenderButton.cpp
InsetListings: change the interface of diaplay function and allow AlignLeft. Applied...
[lyx.git] / src / insets / RenderButton.cpp
index cce32e334f61c8490c0d451729c56abeb8381992..a861acc539bcbef1258ac3c760ff01fc35663e7d 100644 (file)
@@ -30,7 +30,7 @@ RenderButton::RenderButton()
 {}
 
 
-auto_ptr<RenderBase> RenderButton::clone(InsetBase const *) const
+auto_ptr<RenderBase> RenderButton::clone(Inset const *) const
 {
        return auto_ptr<RenderBase>(new RenderButton(*this));
 }
@@ -45,7 +45,7 @@ void RenderButton::update(docstring const & text, bool editable)
 
 bool RenderButton::metrics(MetricsInfo &, Dimension & dim) const
 {
-       LyXFont font(LyXFont::ALL_SANE);
+       Font font(Font::ALL_SANE);
        font.decSize();
        frontend::FontMetrics const & fm =
                theFontMetrics(font);
@@ -66,7 +66,7 @@ bool RenderButton::metrics(MetricsInfo &, Dimension & dim) const
 void RenderButton::draw(PainterInfo & pi, int x, int y) const
 {
        // Draw it as a box with the LaTeX text
-       LyXFont font(LyXFont::ALL_SANE);
+       Font font(Font::ALL_SANE);
        font.setColor(Color::command);
        font.decSize();