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.

97 lines
2.8 KiB

  1. --- ./misc/qxcfi.cpp.orig 2004-09-11 04:07:59.151740064 +0200
  2. +++ ./misc/qxcfi.cpp 2004-09-11 04:08:05.571764072 +0200
  3. @@ -1342,7 +1342,7 @@
  4. bool XCFImageFormat::loadProperty ( QDataStream& xcf_io, PropType& type,
  5. QByteArray& bytes )
  6. {
  7. - xcf_io >> (Q_UINT32)type;
  8. + xcf_io >> (Q_UINT32&)type;
  9. if ( xcf_io.device()->status() != IO_Ok ) {
  10. qDebug( "XCF: read failure on property type" );
  11. --- ./app/batch.cpp.orig 2004-09-11 04:12:22.211748864 +0200
  12. +++ ./app/batch.cpp 2004-09-11 04:13:43.471395520 +0200
  13. @@ -196,7 +196,7 @@
  14. connect(bbox->addButton(i18n("Cancel")), SIGNAL(clicked()), this,
  15. SLOT(reject()));
  16. layout->addWidget(bbox);
  17. -};
  18. +}
  19. KIFShadeDialog::KIFShadeDialog(QWidget *parent, const char *name)
  20. : QDialog(parent, name, true)
  21. @@ -228,7 +228,7 @@
  22. connect(bbox->addButton(i18n("Cancel")), SIGNAL(clicked()), this,
  23. SLOT(reject()));
  24. layout->addWidget(bbox);
  25. -};
  26. +}
  27. KIFTextDialog::KIFTextDialog(QWidget *parent, const char *name)
  28. : QDialog(parent, name, true)
  29. --- ./app/batch.h.orig 2004-09-11 04:12:32.822135840 +0200
  30. +++ ./app/batch.h 2004-09-11 04:12:50.375467328 +0200
  31. @@ -17,7 +17,7 @@
  32. #define off_t long long
  33. extern "C"{
  34. #include <api.h>
  35. -};
  36. +}
  37. class KProgress;
  38. class QLabel;
  39. --- ./app/ifapp.h.orig 2004-09-11 04:12:37.881366720 +0200
  40. +++ ./app/ifapp.h 2004-09-11 04:13:18.392208136 +0200
  41. @@ -14,7 +14,7 @@
  42. #define off_t long long
  43. extern "C"{
  44. #include <api.h>
  45. -};
  46. +}
  47. class KIFFileList;
  48. class KIFImage;
  49. --- ./app/imageutils.cpp.orig 2004-09-11 04:17:17.323885000 +0200
  50. +++ ./app/imageutils.cpp 2004-09-11 04:17:24.803747888 +0200
  51. @@ -23,7 +23,7 @@
  52. #define off_t long long
  53. extern "C"{
  54. #include <api.h>
  55. -};
  56. +}
  57. // in compressedgif.cpp
  58. unsigned int WriteCompressedGIFImage(const ImageInfo *image_info,
  59. --- ./app/main.cpp.orig 2004-09-11 04:17:51.949621088 +0200
  60. +++ ./app/main.cpp 2004-09-11 04:17:59.114531856 +0200
  61. @@ -21,7 +21,7 @@
  62. #define off_t long long
  63. extern "C"{
  64. #include <api.h>
  65. -};
  66. +}
  67. /* Signal handlers. We install them for pretty much everything that can
  68. --- ./app/rightclick.cpp.orig 2004-09-11 04:15:50.851030872 +0200
  69. +++ ./app/rightclick.cpp 2004-09-11 04:16:31.609834592 +0200
  70. @@ -220,7 +220,7 @@
  71. idx = -1;
  72. }
  73. if(idx != -1){
  74. - QStringList itemList(view->itemCatagories(&itemList[idx]));
  75. + QStringList itemList(view->itemCatagories((Thumbnail *)&itemList[idx]));
  76. for(it=catList.begin(), i=1000; it != catList.end(); ++it, ++i){
  77. if(itemList.findIndex((*it)) == -1)
  78. addMnu->insertItem((*it), i);
  79. --- ./app/screengrab.cpp.orig 2004-09-11 04:14:32.614924568 +0200
  80. +++ ./app/screengrab.cpp 2004-09-11 04:14:39.452885040 +0200
  81. @@ -125,7 +125,7 @@
  82. while(inLoop)
  83. kapp->processEvents();
  84. delete this;
  85. -};
  86. +}
  87. void KIFScreenGrab::slotCheckIfDelay()
  88. {