diff options
author | Zdenek Prikryl <zprikryl@redhat.com> | 2009-03-19 14:29:35 +0100 |
---|---|---|
committer | Zdenek Prikryl <zprikryl@redhat.com> | 2009-03-19 14:29:35 +0100 |
commit | d698cf9bca1ac7f5c1a989161ea959a895900273 (patch) | |
tree | 1f63a97e9b7aa3eb50ccedc6afa26ecd69ed52d4 /lib/Plugins/Kerneloops.cpp | |
parent | 700d189946cecea3461cb89b5a755dbfdb578e71 (diff) | |
download | abrt-d698cf9bca1ac7f5c1a989161ea959a895900273.tar.gz abrt-d698cf9bca1ac7f5c1a989161ea959a895900273.tar.xz abrt-d698cf9bca1ac7f5c1a989161ea959a895900273.zip |
replaced language and application plugins by analyzer plugin
added action plugin
simplify plugin iface
Diffstat (limited to 'lib/Plugins/Kerneloops.cpp')
-rw-r--r-- | lib/Plugins/Kerneloops.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Plugins/Kerneloops.cpp b/lib/Plugins/Kerneloops.cpp index 2c0c3e7..07c8e06 100644 --- a/lib/Plugins/Kerneloops.cpp +++ b/lib/Plugins/Kerneloops.cpp @@ -31,7 +31,7 @@ #include "Kerneloops.h" #include "KerneloopsDmesg.h" -std::string CApplicationKerneloops::GetLocalUUID(const std::string& pDebugDumpDir) +std::string CAnalyzerKerneloops::GetLocalUUID(const std::string& pDebugDumpDir) { std::string m_sOops; std::stringstream m_sHash; @@ -53,12 +53,12 @@ std::string CApplicationKerneloops::GetLocalUUID(const std::string& pDebugDumpDi return m_sHash.str(); } -std::string CApplicationKerneloops::GetGlobalUUID(const std::string& pDebugDumpDir) +std::string CAnalyzerKerneloops::GetGlobalUUID(const std::string& pDebugDumpDir) { return GetLocalUUID(pDebugDumpDir); } -void CApplicationKerneloops::Init() +void CAnalyzerKerneloops::Init() { scan_logs(); } |