Remove unused 'PerformancePath' stuff.

This commit is contained in:
Alex Wilson 2012-01-12 02:45:53 +00:00
parent c3e57dc36d
commit fefa17f47e
2 changed files with 0 additions and 30 deletions

View File

@ -54,9 +54,6 @@ public:
YTab* Top() const;
YTab* Bottom() const;
char* PerformancePath() const;
void SetPerformancePath(char* path);
LinearSpec* Solver() const;
void SetInset(float inset);
@ -167,7 +164,6 @@ private:
BSize fMinSize;
BSize fMaxSize;
BSize fPreferredSize;
char* fPerformancePath;
float fInset;
float fSpacing;

View File

@ -53,8 +53,6 @@ BALMLayout::BALMLayout(float spacing, BALMLayout* friendLayout)
fMinSize = kUnsetSize;
fMaxSize = kUnsetSize;
fPreferredSize = kUnsetSize;
fPerformancePath = NULL;
}
@ -971,30 +969,6 @@ BALMLayout::DoLayout()
}
/**
* Gets the path of the performance log file.
*
* @return the path of the performance log file
*/
char*
BALMLayout::PerformancePath() const
{
return fPerformancePath;
}
/**
* Sets the path of the performance log file.
*
* @param path the path of the performance log file
*/
void
BALMLayout::SetPerformancePath(char* path)
{
fPerformancePath = path;
}
LinearSpec*
BALMLayout::Solver() const
{