diff -r 554d9980157f -r 223f270fa7ff engine/src/ShowEngine.cpp --- a/engine/src/ShowEngine.cpp Sun Apr 04 00:21:57 2010 +0100 +++ b/engine/src/ShowEngine.cpp Sun Apr 04 15:54:17 2010 +0100 @@ -34,15 +34,6 @@ const TUint KMaxDownloadErrors = 3; const TInt KMimeBufLength = 100; -// Cleanup stack macro for SQLite3 -// TODO Move this to some common place. -static void Cleanup_sqlite3_finalize_wrapper(TAny* handle) - { - sqlite3_finalize(static_cast(handle)); - } -#define Cleanup_sqlite3_finalize_PushL(__handle) CleanupStack::PushL(TCleanupItem(&Cleanup_sqlite3_finalize_wrapper, __handle)) - - CShowEngine::CShowEngine(CPodcastModel& aPodcastModel) : iPodcastModel(aPodcastModel), iDB(*aPodcastModel.DB())