Advertisement
Guest User

deltaecho

a guest
Feb 20th, 2010
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. Index: ksirk/Dialogs/newGameDialogImpl.cpp
  2. ===================================================================
  3. --- ksirk/Dialogs/newGameDialogImpl.cpp (revision 1093067)
  4. +++ ksirk/Dialogs/newGameDialogImpl.cpp (working copy)
  5. @@ -28,7 +28,7 @@
  6. #include <KMessageBox>
  7. #include <KConfigDialog>
  8. #include <KGameThemeSelector>
  9. -#include <knewstuff2/engine.h>
  10. +#include <knewstuff3/downloaddialog.h>
  11.  
  12. #include <qdir.h>
  13. #include <qstringlist.h>
  14. @@ -192,8 +192,9 @@
  15. return;
  16. }
  17. kDebug();
  18. - KNS::Entry::List entries = KNS::Engine::download();
  19. - qDeleteAll(entries);
  20. + KNS3::DownloadDialog dialog(this);
  21. + dialog.exec();
  22. +
  23. fillSkinsCombo();
  24. /* KConfigDialog *dialog = new KConfigDialog(this, "settings", KsirkSettings::self());
  25. KGameThemeSelector* kgts = new KGameThemeSelector(dialog, KsirkSettings::self());
  26. Index: ksirk/ksirk.knsrc
  27. ===================================================================
  28. --- ksirk/ksirk.knsrc (revision 1093067)
  29. +++ ksirk/ksirk.knsrc (working copy)
  30. @@ -1,4 +1,4 @@
  31. -[KNewStuff2]
  32. +[KNewStuff3]
  33. ProvidersUrl=http://newstuff.kde.org/cgi-bin/hotstuff-provider?site=ksirk
  34. TargetDir=ksirk/skins
  35. -Uncompress=true
  36. +Uncompress=always
  37. Index: ksirk/CMakeLists.txt
  38. ===================================================================
  39. --- ksirk/CMakeLists.txt (revision 1093067)
  40. +++ ksirk/CMakeLists.txt (working copy)
  41. @@ -124,7 +124,7 @@
  42. ${QT_QTSVG_LIBRARY}
  43. ${KDE4_KIO_LIBS}
  44. ${KDE4_PHONON_LIBRARY}
  45. - ${KDE4_KNEWSTUFF2_LIBRARY}
  46. + ${KDE4_KNEWSTUFF3_LIBRARY}
  47. ${QCA2_LIBRARIES}
  48. iris_ksirk
  49. kdegames
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement