diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-08 15:43:18 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-09-08 15:43:18 +0200 |
commit | 8198cd06195f4217fd6b1afb675f3a316c951a1e (patch) | |
tree | 49982be2144bfdc57d4e975e90d9e86983a593c5 /lib/MiddleWare/Database.h | |
parent | 08393f2509642009829f9de09a463e7d3e364a58 (diff) | |
download | abrt-8198cd06195f4217fd6b1afb675f3a316c951a1e.tar.gz abrt-8198cd06195f4217fd6b1afb675f3a316c951a1e.tar.xz abrt-8198cd06195f4217fd6b1afb675f3a316c951a1e.zip |
style fixes, trivial code changes only
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/MiddleWare/Database.h')
-rw-r--r-- | lib/MiddleWare/Database.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/MiddleWare/Database.h b/lib/MiddleWare/Database.h index ce29f18b..0fc31ee7 100644 --- a/lib/MiddleWare/Database.h +++ b/lib/MiddleWare/Database.h @@ -111,7 +111,7 @@ class CDatabase : public CPlugin * @param pUID An UID of an user. * @return A vector of matched rows. */ - virtual const vector_database_rows_t GetUIDData(const std::string& pUID) = 0; + virtual vector_database_rows_t GetUIDData(const std::string& pUID) = 0; /** * A method, which returns one row accordind to UUID of a crash and * UID of an user. If there are no row, empty row is returned. @@ -119,7 +119,7 @@ class CDatabase : public CPlugin * @param pUID An UID of an user. * @return A matched row. */ - virtual const database_row_t GetUUIDData(const std::string& pUUID, + virtual database_row_t GetUUIDData(const std::string& pUUID, const std::string& pUID) = 0; }; |