aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-11-30 20:58:13 (GMT)
committerfluxgen <fluxgen>2002-11-30 20:58:13 (GMT)
commit4c3b6ea0fec1604819bde2356995db14a03d2d57 (patch)
tree6d4294c54d5289e6685c539d32c32006fda24ea0 /src
parentfa24d5c13d30817e709a4935d9d0ff0fe01bfbca (diff)
downloadfluxbox_pavel-4c3b6ea0fec1604819bde2356995db14a03d2d57.zip
fluxbox_pavel-4c3b6ea0fec1604819bde2356995db14a03d2d57.tar.bz2
not using imagecontrol
Diffstat (limited to 'src')
-rw-r--r--src/Theme.cc4
-rw-r--r--src/Theme.hh6
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);
54using namespace std; 54using namespace std;
55 55
56Theme::Theme(Display *display, Window rootwindow, Colormap colormap, 56Theme::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):
58m_display(display), 58m_display(display),
59m_colormap(colormap), 59m_colormap(colormap),
60m_screennum(screennum), 60m_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
40class 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 {
47public: 45public:
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