OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

62 lines
2.4 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../vdr/dvd-0.3.6_b03-vdr-1.3.38.diff
  5. # Copyright (C) 2006 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. diff -aur -x '*.o' dvd-0.3.6_b03/control-dvd.c dvd-0.3.6_b03-patched/control-dvd.c
  17. --- dvd-0.3.6_b03/control-dvd.c 2005-04-12 18:53:43.000000000 +0200
  18. +++ dvd-0.3.6_b03-patched/control-dvd.c 2006-01-08 16:22:15.000000000 +0100
  19. @@ -54,13 +54,13 @@
  20. player->setController(this);
  21. - cStatus::MsgReplaying(this, "DVD");
  22. + cStatus::MsgReplaying(this, "DVD", "unknown title", true);
  23. }
  24. cDvdPlayerControl::~cDvdPlayerControl()
  25. {
  26. Hide();
  27. - cStatus::MsgReplaying(this, NULL);
  28. + cStatus::MsgReplaying(this, "DVD", NULL, false);
  29. Stop();
  30. assert(dvd_active == true);
  31. dvd_active = false;
  32. @@ -310,7 +310,7 @@
  33. lastCurrent = lastTotal = -1;
  34. last_title_buffer[0]=0;
  35. displayReplay->SetTitle("unknown title");
  36. - cStatus::MsgReplaying(this, "unknown title");
  37. + cStatus::MsgReplaying(this, "DVD", "unknown title", true);
  38. }
  39. if (player) {
  40. @@ -318,7 +318,7 @@
  41. if ( strcmp(title_buffer,last_title_buffer) != 0 ) {
  42. displayReplay->SetTitle(title_buffer);
  43. if (!Initial) displayReplay->Flush();
  44. - cStatus::MsgReplaying(this, title_buffer);
  45. + cStatus::MsgReplaying(this, "DVD", title_buffer, true);
  46. strcpy(last_title_buffer, title_buffer);
  47. }
  48. }
  49. @@ -568,7 +568,7 @@
  50. title_buffer = GetDisplayHeaderLine();
  51. if ( strcmp(title_buffer,last_title_buffer) != 0 ) {
  52. strcpy(last_title_buffer, title_buffer);
  53. - cStatus::MsgReplaying(this, title_buffer);
  54. + cStatus::MsgReplaying(this, "DVD", title_buffer, true);
  55. }
  56. }
  57. }