diff --git a/headers/libs/alm/ALMLayout.h b/headers/libs/alm/ALMLayout.h index 540f932731..0de7c01501 100644 --- a/headers/libs/alm/ALMLayout.h +++ b/headers/libs/alm/ALMLayout.h @@ -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; diff --git a/src/libs/alm/ALMLayout.cpp b/src/libs/alm/ALMLayout.cpp index d900ced429..d571136163 100644 --- a/src/libs/alm/ALMLayout.cpp +++ b/src/libs/alm/ALMLayout.cpp @@ -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 {