mirror of the now-defunct rocklinux.org
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.

64 lines
2.4 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/kde/kdegraphics/hotfix-binutils-gcc.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2004 Clifford Wolf
  10. #
  11. # This patch file is dual-licensed. It is available under the license the
  12. # patched project is licensed under, as long as it is an OpenSource license
  13. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  14. # of the GNU General Public License as published by the Free Software
  15. # Foundation; either version 2 of the License, or (at your option) any later
  16. # version.
  17. #
  18. # --- ROCK-COPYRIGHT-NOTE-END ---
  19. Hotfix needed for new binutils (bug is in gcc)
  20. (see http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16625)
  21. --- ./kpovmodeler/pmmetaobject.h.orig 2004-09-06 21:19:35.784452528 +0200
  22. +++ ./kpovmodeler/pmmetaobject.h 2004-09-06 21:20:56.917118488 +0200
  23. @@ -247,6 +247,9 @@
  24. case PMVariant::Bool: \
  25. ( o->*( m_setFunction.setBool ) )( v.boolData( ) ); \
  26. break; \
  27. + } \
  28. + switch( type( ) ) \
  29. + { \
  30. case PMVariant::ThreeState: \
  31. ( o->*( m_setFunction.setThreeState ) )( v.threeStateData( ) ); \
  32. break; \
  33. @@ -256,6 +259,9 @@
  34. case PMVariant::Vector: \
  35. ( o->*( m_setFunction.setVector ) )( v.vectorData( ) ); \
  36. break; \
  37. + } \
  38. + switch( type( ) ) \
  39. + { \
  40. case PMVariant::Color: \
  41. ( o->*( m_setFunction.setColor ) )( v.colorData( ) ); \
  42. break; \
  43. @@ -287,6 +293,9 @@
  44. case PMVariant::Bool: \
  45. result.setBool( ( o->*( m_getFunction.getBool ) )( ) ); \
  46. break; \
  47. + } \
  48. + switch( type( ) ) \
  49. + { \
  50. case PMVariant::ThreeState: \
  51. result.setThreeState( ( o->*( m_getFunction.getThreeState ) )( ) ); \
  52. break; \
  53. @@ -296,6 +305,9 @@
  54. case PMVariant::Vector: \
  55. result.setVector( ( o->*( m_getFunction.getVector ) )( ) ); \
  56. break; \
  57. + } \
  58. + switch( type( ) ) \
  59. + { \
  60. case PMVariant::Color: \
  61. result.setColor( ( o->*( m_getFunction.getColor ) )( ) ); \
  62. break; \