From fefa17f47eaee07bf273786495d7a7b7e9ee85b1 Mon Sep 17 00:00:00 2001 From: Alex Wilson Date: Thu, 12 Jan 2012 02:45:53 +0000 Subject: [PATCH] Remove unused 'PerformancePath' stuff. --- headers/libs/alm/ALMLayout.h | 4 ---- src/libs/alm/ALMLayout.cpp | 26 -------------------------- 2 files changed, 30 deletions(-) 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 {