diff options
| author | Nikola Pajkovsky <npajkovs@redhat.com> | 2010-09-07 18:12:17 +0200 |
|---|---|---|
| committer | Nikola Pajkovsky <npajkovs@redhat.com> | 2010-09-08 15:53:29 +0200 |
| commit | a0b7850b3ac3a89e2bb02a214039c777d244ef22 (patch) | |
| tree | 406d4cddd94e4d6ec6d282907fc6bc3bf3c97a4d /lib/plugins/SQLite3.h | |
| parent | 890e78b99a136533fa5bab788ce0f6b9a9f2b47c (diff) | |
| download | abrt-a0b7850b3ac3a89e2bb02a214039c777d244ef22.tar.gz abrt-a0b7850b3ac3a89e2bb02a214039c777d244ef22.tar.xz abrt-a0b7850b3ac3a89e2bb02a214039c777d244ef22.zip | |
SQLite3.cpp: replace std::vector by GList
Signed-off-by: Nikola Pajkovsky <npajkovs@redhat.com>
Acked-off-by: Denys Vlasenko <dvlasenk@redhat.com>
Diffstat (limited to 'lib/plugins/SQLite3.h')
| -rw-r--r-- | lib/plugins/SQLite3.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/plugins/SQLite3.h b/lib/plugins/SQLite3.h index d2af864c..3dfd0a9d 100644 --- a/lib/plugins/SQLite3.h +++ b/lib/plugins/SQLite3.h @@ -47,10 +47,11 @@ class CSQLite3 : public CDatabase virtual void SetReportedPerReporter(const char *crash_id, const char *reporter, const char *pMessage); - virtual vector_database_rows_t GetUIDData(long caller_uid); - virtual database_row_t GetRow(const char *crash_id); + virtual GList *GetUIDData(long caller_uid); + virtual struct db_row *GetRow(const char *crash_id); virtual void SetSettings(const map_plugin_settings_t& pSettings); }; + #endif |
