From 474d438049f165da0f8faa172af82b496d617cb4 Mon Sep 17 00:00:00 2001 From: garyzhang2681 Date: Fri, 29 Apr 2016 17:29:27 +0800 Subject: [PATCH] Update RefinedAbstraction.cpp m_pImp->operationImp(); change to imp->operationImp(); --- code/Bridge/RefinedAbstraction.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/Bridge/RefinedAbstraction.cpp b/code/Bridge/RefinedAbstraction.cpp index 73998ce..e087249 100644 --- a/code/Bridge/RefinedAbstraction.cpp +++ b/code/Bridge/RefinedAbstraction.cpp @@ -25,7 +25,7 @@ RefinedAbstraction::~RefinedAbstraction(){ void RefinedAbstraction::operation(){ cout << "do something else ,and then " << endl; - m_pImp->operationImp(); + imp->operationImp(); } - \ No newline at end of file +