summaryrefslogtreecommitdiff
path: root/src/T2DLL/T2GuestroomTable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/T2DLL/T2GuestroomTable.cpp')
-rw-r--r--src/T2DLL/T2GuestroomTable.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/T2DLL/T2GuestroomTable.cpp b/src/T2DLL/T2GuestroomTable.cpp
index 4458d0f..752f276 100644
--- a/src/T2DLL/T2GuestroomTable.cpp
+++ b/src/T2DLL/T2GuestroomTable.cpp
@@ -409,12 +409,12 @@ int T2GuestroomItem::GetOutMoney() {
void T2GuestroomItem::UpdateTenantEstimation(T2TowerDoc* inDoc) {
BOOL isChanged = mTenant->UpdateResidencialEstimate(inDoc);
- int viewMode = inDoc->towerDoc_vf140();
- if ((viewMode == ViewMode_2 && isChanged) || (viewMode == ViewMode_3)) {
+ int viewMode = inDoc->GetViewMode();
+ if ((viewMode == kEvalView && isChanged) || (viewMode == kPriceView)) {
mTenant->SetDrawMode(DrawMode1);
RECT rect;
mTenant->GetEquipArea(rect);
- inDoc->GetTowerMainView()->tmv_vf128(rect);
+ inDoc->GetMainView()->InvalUnitRect(rect);
}
}