# HG changeset patch # User Andre Heinecke # Date 1397586446 -7200 # Node ID ae2ef965a41b8f322ff97dcb2afa88e724b71da2 # Parent 8090a1bc1b5b52e8dcacca6c6ccb3bb1b66d4cc5 Provide installer with old list in case there are no news diff -r 8090a1bc1b5b -r ae2ef965a41b ui/mainwindow.cpp --- a/ui/mainwindow.cpp Tue Apr 15 20:26:42 2014 +0200 +++ b/ui/mainwindow.cpp Tue Apr 15 20:27:26 2014 +0200 @@ -492,7 +492,9 @@ progress->show(); InstallWrapper *instWrap = new InstallWrapper(this, - mListToInstall.fileName(), + mListToInstall.isValid() ? + mListToInstall.fileName() : + mInstalledList.fileName(), choices); /* Clean up object and progress dialog */ connect(instWrap, SIGNAL(finished()), instWrap, SLOT(deleteLater()));