]> git.pld-linux.org Git - packages/fluxbox.git/blob - fluxbox-0.1.13-bugfix1.patch
- updated to 0.9.14
[packages/fluxbox.git] / fluxbox-0.1.13-bugfix1.patch
1 Only in fluxbox-0.1.13-bugfix1/data: menu.bak
2 diff -r -U 1 fluxbox-0.1.13/src/Ewmh.cc fluxbox-0.1.13-bugfix1/src/Ewmh.cc
3 --- fluxbox-0.1.13/src/Ewmh.cc  2002-10-17 01:32:17.000000000 +0200
4 +++ fluxbox-0.1.13-bugfix1/src/Ewmh.cc  2002-11-30 15:51:51.000000000 +0100
5 @@ -331,2 +331,5 @@
6         m_net_close_window = XInternAtom(disp, "_NET_CLOSE_WINDOW", False);
7 +       m_net_moveresize_window = XInternAtom(disp, "_NET_MOVERESIZE_WINDOW", False);
8 +       
9 +       // TODO: implement this one
10         m_net_wm_moveresize = XInternAtom(disp, "_NET_WM_MOVERESIZE", False);
11 diff -r -U 1 fluxbox-0.1.13/src/Font.cc fluxbox-0.1.13-bugfix1/src/Font.cc
12 --- fluxbox-0.1.13/src/Font.cc  2002-10-25 23:07:07.000000000 +0200
13 +++ fluxbox-0.1.13-bugfix1/src/Font.cc  2002-11-30 15:50:53.000000000 +0100
14 @@ -141,10 +141,4 @@
15                 return false;
16 -       bool ret_val = m_fontimp->load(name);
17 -       if (ret_val && name == 0) { //prevent from having a bad fontimp
18 -               m_fontstr = name; // if the load really succeded then set font string
19 -       } else {
20 -               m_fontstr = "";
21 -       }
22 -
23 -       return ret_val;
24 +       m_fontstr = name;
25 +       return m_fontimp->load(name);
26  }
27 diff -r -U 1 fluxbox-0.1.13/src/Screen.cc fluxbox-0.1.13-bugfix1/src/Screen.cc
28 --- fluxbox-0.1.13/src/Screen.cc        2002-11-17 12:27:50.000000000 +0100
29 +++ fluxbox-0.1.13-bugfix1/src/Screen.cc        2002-11-30 15:50:53.000000000 +0100
30 @@ -286,3 +286,3 @@
31                         image_control, fluxbox->getStyleFilename(), getRootCommand().c_str());
32 -
33 +       theme->reconfigure(*resource.antialias);
34  
35 @@ -449,3 +449,2 @@
36         XFlush(getBaseDisplay()->getXDisplay());
37 -       theme->reconfigure(*resource.antialias);
38  }
39 diff -r -U 1 fluxbox-0.1.13/src/Texture.cc fluxbox-0.1.13-bugfix1/src/Texture.cc
40 --- fluxbox-0.1.13/src/Texture.cc       2002-09-19 21:51:55.000000000 +0200
41 +++ fluxbox-0.1.13-bugfix1/src/Texture.cc       2002-11-30 15:52:03.000000000 +0100
42 @@ -26,2 +26,6 @@
43  
44 +#ifdef HAVE_CONFIG_H
45 +#include "config.h"
46 +#endif // HAVE_CONFIG_H
47 +
48  #include "Texture.hh"
This page took 0.038719 seconds and 3 git commands to generate.