diff options
-rw-r--r-- | src/Theme.cc | 4 | ||||
-rw-r--r-- | src/Theme.hh | 6 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/Theme.cc b/src/Theme.cc index b41c859..c344c43 100644 --- a/src/Theme.cc +++ b/src/Theme.cc | |||
@@ -21,7 +21,7 @@ | |||
21 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 21 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
22 | // DEALINGS IN THE SOFTWARE. | 22 | // DEALINGS IN THE SOFTWARE. |
23 | 23 | ||
24 | // $Id: Theme.cc,v 1.36 2002/11/30 20:14:04 fluxgen Exp $ | 24 | // $Id: Theme.cc,v 1.37 2002/11/30 20:58:13 fluxgen Exp $ |
25 | 25 | ||
26 | 26 | ||
27 | #include "Theme.hh" | 27 | #include "Theme.hh" |
@@ -54,7 +54,7 @@ extern void bexec(const char *command, char *displaystring); | |||
54 | using namespace std; | 54 | using namespace std; |
55 | 55 | ||
56 | Theme::Theme(Display *display, Window rootwindow, Colormap colormap, | 56 | Theme::Theme(Display *display, Window rootwindow, Colormap colormap, |
57 | int screennum, BImageControl *ic, const char *filename, const char *rootcommand): | 57 | int screennum, const char *filename, const char *rootcommand): |
58 | m_display(display), | 58 | m_display(display), |
59 | m_colormap(colormap), | 59 | m_colormap(colormap), |
60 | m_screennum(screennum), | 60 | m_screennum(screennum), |
diff --git a/src/Theme.hh b/src/Theme.hh index 3cdf5ff..19c709e 100644 --- a/src/Theme.hh +++ b/src/Theme.hh | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Theme.hh,v 1.19 2002/11/30 20:14:04 fluxgen Exp $ | 25 | // $Id: Theme.hh,v 1.20 2002/11/30 20:57:35 fluxgen Exp $ |
26 | 26 | ||
27 | #ifndef THEME_HH | 27 | #ifndef THEME_HH |
28 | #define THEME_HH | 28 | #define THEME_HH |
@@ -37,8 +37,6 @@ | |||
37 | 37 | ||
38 | #include <string> | 38 | #include <string> |
39 | 39 | ||
40 | class BImageControl; | ||
41 | |||
42 | /** | 40 | /** |
43 | Main theme class, holds themes for | 41 | Main theme class, holds themes for |
44 | Window, toolbar, slit, menu and the rootCommand, for a specific screen. | 42 | Window, toolbar, slit, menu and the rootCommand, for a specific screen. |
@@ -47,7 +45,7 @@ class Theme { | |||
47 | public: | 45 | public: |
48 | 46 | ||
49 | Theme(Display *display, Window rootwindow, Colormap colormap, | 47 | Theme(Display *display, Window rootwindow, Colormap colormap, |
50 | int screennum, BImageControl *ic, const char *filename, const char *rootcommand); | 48 | int screennum, const char *filename, const char *rootcommand); |
51 | ~Theme(); | 49 | ~Theme(); |
52 | 50 | ||
53 | 51 | ||