]> git.pld-linux.org Git - packages/icewm.git/blob - icewm-compile-fixes.patch
- removed outdated patches (already in sources)
[packages/icewm.git] / icewm-compile-fixes.patch
1 diff -urN aaa/icewm-1.2.3pre1/src/aapm.cc icewm-1.2.3pre1/src/aapm.cc
2 --- aaa/icewm-1.2.3pre1/src/aapm.cc     Sun Oct 20 16:04:55 2002
3 +++ icewm-1.2.3pre1/src/aapm.cc Fri Nov 15 01:12:20 2002
4 @@ -463,7 +463,7 @@
5  
6      if (gradient) {
7          g.copyPixbuf(*gradient, this->x(), this->y(),
8 -                     width((), height(), 0, 0));
9 +                     width(), height(), 0, 0);
10      }
11      else
12  #endif
13 diff -urN aaa/icewm-1.2.3pre1/src/icesound.cc icewm-1.2.3pre1/src/icesound.cc
14 --- aaa/icewm-1.2.3pre1/src/icesound.cc Sun Oct 20 16:04:55 2002
15 +++ icewm-1.2.3pre1/src/icesound.cc     Fri Nov 15 01:13:20 2002
16 @@ -82,6 +82,10 @@
17  #define OSS_DEFAULT_DEVICE "/dev/dsp"
18  #define YIFF_DEFAULT_SERVER "127.0.0.1:9433"
19  
20 +#define THROW(Result) { rc = (Result); goto exceptionHandler; }
21 +#define TRY(Command) { if ((rc = (Command))) THROW(rc); }
22 +#define CATCH(Handler) { exceptionHandler: { Handler } return rc; }
23 +
24  /******************************************************************************
25   * IceSound application
26   ******************************************************************************/
This page took 0.08722 seconds and 3 git commands to generate.