Removed obsolete ChartLegendRenderer::MaximumLegendSize().

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30541 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-05-01 20:54:03 +00:00
parent c3ac87e8fc
commit 02b4901e4c
3 changed files with 0 additions and 10 deletions

View File

@ -33,7 +33,6 @@ public:
virtual void GetMinimumLegendSpacing(BView* view,
float* horizontal, float* vertical) = 0;
virtual BSize MaximumLegendSize(BView* view) = 0;
virtual BSize LegendSize(ChartLegend* legend,
BView* view) = 0;

View File

@ -33,14 +33,6 @@ StringChartLegendRenderer::GetMinimumLegendSpacing(BView* view,
}
BSize
StringChartLegendRenderer::MaximumLegendSize(BView* view)
{
// TODO: Implement for real!
return BSize(100, 20);
}
BSize
StringChartLegendRenderer::LegendSize(ChartLegend* _legend, BView* view)
{

View File

@ -26,7 +26,6 @@ class StringChartLegendRenderer : public ChartLegendRenderer {
public:
virtual void GetMinimumLegendSpacing(BView* view,
float* horizontal, float* vertical);
virtual BSize MaximumLegendSize(BView* view);
virtual BSize LegendSize(ChartLegend* legend,
BView* view);