summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntonie Jovanoski <antonie.jovanoski@seavus.com>2011-07-29 14:51:55 +0100
committerViktor Mladenovski <viktor.mladenovski@seavus.com>2011-09-29 09:48:26 +0200
commitc83cab43652930dadde059517f7fb076357cbd2b (patch)
tree119e5806c90b780e6f381f28103280a336a8fff9
parente725df9c91c99c1b39822f6c9cbdb5a921ac4672 (diff)
Wrong instance pointer is returned by LCM/LCD
Returned instance pointer by progress bar callback now it's the same instance pointer returned by CLCDriverMethods::Do_Initialize. ST-Ericsson ID: 353845 ST-Ericsson FOSS-OUT ID: STETL-FOSS-OUT-10204 Change-Id: Ia52068a7272dd7c55adeaade6d8fbcb86113c438 Reviewed-on: http://gerrit.lud.stericsson.com/gerrit/28022 Reviewed-by: QATOOLS Reviewed-by: QATEST Tested-by: Cvetko MLADENOVSKI <cvetko.mladenovski@seavus.com> Reviewed-by: Viktor MLADENOVSKI <viktor.mladenovski@stericsson.com>
-rw-r--r--source/LCDriver.rc4
-rw-r--r--source/LCDriverMethods.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/LCDriver.rc b/source/LCDriver.rc
index 512e470..239fedc 100644
--- a/source/LCDriver.rc
+++ b/source/LCDriver.rc
@@ -87,9 +87,9 @@ BEGIN
VALUE "FileVersion", "1, 0, 0, 1"
VALUE "InternalName", "Loader Communication Driver"
VALUE "LegalCopyright", "Copyright (C) STEricsson AB 2011"
- VALUE "PrivateBuild", "http://gerrit.lud.stericsson.com/gerrit/27573"
+ VALUE "PrivateBuild", "http://gerrit.lud.stericsson.com/gerrit/28022"
VALUE "ProductName", "CXC 173 0865, LCDriver DLL"
- VALUE "ProductVersion", "R1S"
+ VALUE "ProductVersion", "PT1"
END
END
BLOCK "VarFileInfo"
diff --git a/source/LCDriverMethods.cpp b/source/LCDriverMethods.cpp
index 564390e..d214631 100644
--- a/source/LCDriverMethods.cpp
+++ b/source/LCDriverMethods.cpp
@@ -2591,7 +2591,7 @@ void CLCDriverMethods::Do_BulkDataReqCallback(uint16 Session, uint32 ChunkSize,
void CLCDriverMethods::UpdateBulkProgress()
{
if (NULL != m_ProgressBarUpdate) {
- m_ProgressBarUpdate(m_pLcmInterface->getLCMContext(), m_uiBulkLength, m_uiBulkTransferred);
+ m_ProgressBarUpdate(m_pCommunicationDevice, m_uiBulkLength, m_uiBulkTransferred);
}
}