Removed unused variable.

This commit is contained in:
Leonardo Zide
2026-02-03 09:29:19 -08:00
parent e2a1ada4df
commit bbd01f3e4e
2 changed files with 1 additions and 3 deletions
+1 -2
View File
@@ -74,8 +74,7 @@ lcView::~lcView()
if (mLastFocusedView == this) if (mLastFocusedView == this)
mLastFocusedView = nullptr; mLastFocusedView = nullptr;
if (mDeleteContext) delete mContext;
delete mContext;
} }
std::vector<lcView*> lcView::GetModelViews(const lcModel* Model) std::vector<lcView*> lcView::GetModelViews(const lcModel* Model)
-1
View File
@@ -319,7 +319,6 @@ protected:
lcViewWidget* mWidget = nullptr; lcViewWidget* mWidget = nullptr;
int mWidth = 1; int mWidth = 1;
int mHeight = 1; int mHeight = 1;
bool mDeleteContext = true;
lcViewType mViewType; lcViewType mViewType;
int mMouseX = 0; int mMouseX = 0;