aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2003-05-18 22:12:25 (GMT)
committerfluxgen <fluxgen>2003-05-18 22:12:25 (GMT)
commit80161fc208431b0c2ed4265b788af0713401f133 (patch)
tree02db7b2f2c749ffb3101f66f06d7c4013765ad13
parente2170d50cf924c8e69025adfdcd4e3c262ed60be (diff)
downloadfluxbox-80161fc208431b0c2ed4265b788af0713401f133.zip
fluxbox-80161fc208431b0c2ed4265b788af0713401f133.tar.bz2
moved XrmDatabaseHelper to FbTk
-rw-r--r--src/FbTk/Theme.cc6
-rw-r--r--src/FbTk/Theme.hh6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/FbTk/Theme.cc b/src/FbTk/Theme.cc
index d07d361..dc5a289 100644
--- a/src/FbTk/Theme.cc
+++ b/src/FbTk/Theme.cc
@@ -1,5 +1,5 @@
1// Theme.cc for FbTk - Fluxbox ToolKit 1// Theme.cc for FbTk - Fluxbox ToolKit
2// Copyright (c) 2002 Henrik Kinnunen (fluxgen at linuxmail.org) 2// Copyright (c) 2002 - 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
@@ -19,11 +19,11 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: Theme.cc,v 1.4 2003/05/08 15:10:57 fluxgen Exp $ 22// $Id: Theme.cc,v 1.5 2003/05/18 22:12:25 fluxgen Exp $
23 23
24#include "Theme.hh" 24#include "Theme.hh"
25 25
26#include "../XrmDatabaseHelper.hh" 26#include "XrmDatabaseHelper.hh"
27#include "Font.hh" 27#include "Font.hh"
28#include "Color.hh" 28#include "Color.hh"
29#include "Texture.hh" 29#include "Texture.hh"
diff --git a/src/FbTk/Theme.hh b/src/FbTk/Theme.hh
index 7675fae..1872084 100644
--- a/src/FbTk/Theme.hh
+++ b/src/FbTk/Theme.hh
@@ -1,5 +1,5 @@
1// Theme.hh for FbTk - Fluxbox ToolKit 1// Theme.hh for FbTk - Fluxbox ToolKit
2// Copyright (c) 2002 Henrik Kinnunen (fluxgen at linuxmail.org) 2// Copyright (c) 2002 - 2003 Henrik Kinnunen (fluxgen at users.sourceforge.net)
3// 3//
4// Permission is hereby granted, free of charge, to any person obtaining a 4// Permission is hereby granted, free of charge, to any person obtaining a
5// copy of this software and associated documentation files (the "Software"), 5// copy of this software and associated documentation files (the "Software"),
@@ -19,7 +19,7 @@
19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20// DEALINGS IN THE SOFTWARE. 20// DEALINGS IN THE SOFTWARE.
21 21
22// $Id: Theme.hh,v 1.3 2003/04/25 18:13:29 fluxgen Exp $ 22// $Id: Theme.hh,v 1.4 2003/05/18 22:12:23 fluxgen Exp $
23 23
24/** 24/**
25 @file holds ThemeItem<T>, Theme and ThemeManager which is the base for any theme 25 @file holds ThemeItem<T>, Theme and ThemeManager which is the base for any theme
@@ -32,7 +32,7 @@
32#include <list> 32#include <list>
33#include <string> 33#include <string>
34 34
35#include "../XrmDatabaseHelper.hh" 35#include "XrmDatabaseHelper.hh"
36 36
37namespace FbTk { 37namespace FbTk {
38 38