From c2defb5cafaa9015951b8183ae6825d7ec643612 Mon Sep 17 00:00:00 2001 From: Zdenek Prikryl Date: Wed, 25 Feb 2009 18:16:55 +0100 Subject: added reported item --- lib/MiddleWare/MiddleWare.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/MiddleWare/MiddleWare.cpp') diff --git a/lib/MiddleWare/MiddleWare.cpp b/lib/MiddleWare/MiddleWare.cpp index 8487dc2..d258814 100644 --- a/lib/MiddleWare/MiddleWare.cpp +++ b/lib/MiddleWare/MiddleWare.cpp @@ -347,6 +347,7 @@ int CMiddleWare::SaveDebugDump(const std::string& pDebugDumpDir, crash_info_t& p pCrashInfo.m_sExecutable = executable; pCrashInfo.m_sPackage = package; pCrashInfo.m_sTime = row.m_sTime; + pCrashInfo.m_sReported = "0"; return 1; } @@ -370,6 +371,7 @@ vector_crash_infos_t CMiddleWare::GetCrashInfos(const std::string& pUID) info.m_sUID = rows[ii].m_sUID; info.m_sCount = rows[ii].m_sCount; info.m_sTime = rows[ii].m_sTime; + info.m_sReported = rows[ii].m_sReported; dd.Open(rows[ii].m_sDebugDumpDir); dd.LoadText(FILENAME_EXECUTABLE, data); -- cgit