~ubuntu-branches/ubuntu/utopic/kde4libs/utopic

« back to all changes in this revision

Viewing changes to khtml/rendering/RenderSVGRoot.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-08-01 16:16:35 UTC
  • mfrom: (1.14.20)
  • Revision ID: package-import@ubuntu.com-20120801161635-qewual50h0fwfeju
Tags: 4:4.9.0a-0ubuntu1
New tar from upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
{
54
54
}
55
55
 
56
 
short RenderSVGRoot::lineHeight(bool b, bool isRootLineBox) const
 
56
short RenderSVGRoot::lineHeight(bool b) const
57
57
{
58
58
    Q_UNUSED(b);
59
 
    Q_UNUSED(isRootLineBox);
60
59
    return height() + marginTop() + marginBottom();
61
60
}
62
61
 
63
 
short RenderSVGRoot::baselinePosition(bool b, bool isRootLineBox) const
 
62
short RenderSVGRoot::baselinePosition(bool b) const
64
63
{
65
64
    Q_UNUSED(b);
66
 
    Q_UNUSED(isRootLineBox);
67
65
    return height() + marginTop() + marginBottom();
68
66
}
69
67