From 97f8ec98d465f7beeea5020ec86ddabc7cee6a3d Mon Sep 17 00:00:00 2001 From: Hyunbin Lee Date: Tue, 2 Apr 2013 17:48:50 +0900 Subject: [PATCH] Change error message Change-Id: Ia3d253b135d56d7889050e18c507b3b446962dfe Signed-off-by: Hyunbin Lee --- project/src/MapDataControlForm.cpp | 2 +- project/src/SqlDataControlForm.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/project/src/MapDataControlForm.cpp b/project/src/MapDataControlForm.cpp index 71401e1..adaa09b 100644 --- a/project/src/MapDataControlForm.cpp +++ b/project/src/MapDataControlForm.cpp @@ -157,7 +157,7 @@ MapDataControlForm::OnListViewItemStateChanged(ListView& listView, int index, in // hide the popup and show result message. HidePopup(); MessageBox myMSGBox; - myMSGBox.Construct(L"GetMapDataControlN", L"DictionaryDataControlProvider is not installed. Pls Install!!", MSGBOX_STYLE_OK, 0); + myMSGBox.Construct(L"GetMapDataControlN() failed", L"DictionaryDataControlProvider is not installed. Please install it !!", MSGBOX_STYLE_OK, 0); // Call ShowAndWait int modalResult = 0; myMSGBox.ShowAndWait(modalResult); //ShowAndWait() draw, show itself and process events diff --git a/project/src/SqlDataControlForm.cpp b/project/src/SqlDataControlForm.cpp index 84fa13c..bce4265 100644 --- a/project/src/SqlDataControlForm.cpp +++ b/project/src/SqlDataControlForm.cpp @@ -156,7 +156,7 @@ SqlDataControlForm::OnListViewItemStateChanged(ListView& listView, int index, in HidePopup(); AppLog("GetSqlDataControlN() Failed"); MessageBox myMSGBox; - myMSGBox.Construct(L"GetSqlDataControlN", L"DictionaryDataControlProvider is not installed. Pls Install!!", MSGBOX_STYLE_OK, 0); + myMSGBox.Construct(L"GetSqlDataControlN() failed", L"DictionaryDataControlProvider is not installed. Please install it !!", MSGBOX_STYLE_OK, 0); // Call ShowAndWait int modalResult = 0; myMSGBox.ShowAndWait(modalResult); //ShowAndWait() draw, show itself and process events -- 2.7.4