Removed debug code that place the DB in the wrong place; Fix for DL queue not updating show icon correctly when moving to next download.
authorteknolog
Sat, 03 Apr 2010 10:55:45 +0100
changeset 101 867fc277ffea
parent 100 e0fc52a5df4d
child 102 04c6ccce8e7e
Removed debug code that place the DB in the wrong place; Fix for DL queue not updating show icon correctly when moving to next download.
application/src/PodcastQueueView.cpp
engine/src/SettingsEngine.cpp
--- a/application/src/PodcastQueueView.cpp	Thu Apr 01 11:47:56 2010 +0200
+++ b/application/src/PodcastQueueView.cpp	Sat Apr 03 10:55:45 2010 +0100
@@ -587,6 +587,7 @@
 
 void CPodcastQueueView::DownloadQueueUpdatedL(TInt /*aDownloadingShows*/, TInt /*aQueuedShows*/)
 	{
+	UpdateListboxItemsL();
 	}
 
 void CPodcastQueueView::FeedUpdateAllCompleteL(TFeedState /*aState*/)
--- a/engine/src/SettingsEngine.cpp	Thu Apr 01 11:47:56 2010 +0200
+++ b/engine/src/SettingsEngine.cpp	Sat Apr 03 10:55:45 2010 +0100
@@ -222,11 +222,8 @@
 TFileName CSettingsEngine::PrivatePath()
 	{
 	TFileName privatePath;
-#ifdef __WINS__
 	iPodcastModel.FsSession().PrivatePath(privatePath);
-#else	
-	privatePath = _L("e:\\pod\\");
-#endif
+
 	TRAP_IGNORE(BaflUtils::EnsurePathExistsL(iPodcastModel.FsSession(), privatePath));
 	return privatePath;
 	}