Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.58 KB | None | 0 0
  1. diff --git a/source/library/client/Clue.cpp b/source/library/client/Clue.cpp
  2. index 06c33fd..32ef955 100644
  3. --- a/source/library/client/Clue.cpp
  4. +++ b/source/library/client/Clue.cpp
  5. @@ -3,10 +3,6 @@
  6. #include <E-mail.h>
  7. #include <MediaEncoder.h>
  8.  
  9. -#ifndef B_ZETA_VERSION
  10. -#include <MultiChannelControl.h>
  11. -#endif
  12. -
  13. #ifndef _STDIO_H
  14. #include <stdio.h>
  15. #endif
  16. diff --git a/source/library/client/InspectApplicationKitObjects.cpp b/source/library/client/InspectApplicationKitObjects.cpp
  17. index 033e053..e15e468 100644
  18. --- a/source/library/client/InspectApplicationKitObjects.cpp
  19. +++ b/source/library/client/InspectApplicationKitObjects.cpp
  20. @@ -1240,7 +1240,7 @@ Inspect_BHandler
  21.  
  22.  
  23. char hexbuf[12];
  24. - GetHexString (hexbuf, (int32) inValue);
  25. + GetHexString (hexbuf, (uint32) inValue);
  26. strDetails << tabindent << pDescription << "[BHandler object, ptr=" << hexbuf << "]\n";
  27. tabindent << g_pIndentation;
  28.  
  29. diff --git a/source/viewer/PrintView.h b/source/viewer/PrintView.h
  30. index 136d58c..e61a8a2 100644
  31. --- a/source/viewer/PrintView.h
  32. +++ b/source/viewer/PrintView.h
  33. @@ -29,6 +29,9 @@
  34. #include <Rect.h>
  35. #endif
  36.  
  37. +#ifndef _PRINT_JOB_H
  38. +#include <PrintJob.h>
  39. +#endif
  40.  
  41. class PrintViewa : public BView
  42. {
  43. diff --git a/source/viewer/Slider.cpp b/source/viewer/Slider.cpp
  44. index 04a2854..1fa87ab 100644
  45. --- a/source/viewer/Slider.cpp
  46. +++ b/source/viewer/Slider.cpp
  47. @@ -43,7 +43,7 @@ Slider :: Slider
  48. , BMessage * message
  49. , int32 minValue
  50. , int32 maxValue
  51. -, thumb_style thumbType = B_BLOCK_THUMB
  52. +, thumb_style thumbType
  53. , uint32 resizingMode
  54. , uint32 flags
  55. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement