aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-01-08 12:13:55 (GMT)
committerfluxgen <fluxgen>2002-01-08 12:13:55 (GMT)
commitb98d3ba9d7ad58f323873d808fb05179fc20299b (patch)
tree1b003ac3326f14e02be135ed01f3a65658603d39
parent4787059491bc2f1c6eb58149a8a5809aa3a201d1 (diff)
downloadfluxbox-b98d3ba9d7ad58f323873d808fb05179fc20299b.zip
fluxbox-b98d3ba9d7ad58f323873d808fb05179fc20299b.tar.bz2
Fixed std::string bug
-rw-r--r--src/Theme.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Theme.cc b/src/Theme.cc
index 6eba19e..afd6a33 100644
--- a/src/Theme.cc
+++ b/src/Theme.cc
@@ -41,7 +41,7 @@
41// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 41// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
42// DEALINGS IN THE SOFTWARE. 42// DEALINGS IN THE SOFTWARE.
43 43
44// $Id: Theme.cc,v 1.9 2002/01/08 11:37:15 fluxgen Exp $ 44// $Id: Theme.cc,v 1.10 2002/01/08 12:13:55 fluxgen Exp $
45 45
46#ifndef _GNU_SOURCE 46#ifndef _GNU_SOURCE
47#define _GNU_SOURCE 47#define _GNU_SOURCE
@@ -75,10 +75,9 @@ Theme::Theme(Display *display, Window rootwindow, Colormap colormap,
75m_imagecontrol(ic), 75m_imagecontrol(ic),
76m_display(display), 76m_display(display),
77m_colormap(colormap), 77m_colormap(colormap),
78m_screennum(screennum), 78m_screennum(screennum)
79m_rootcommand(rootcommand)
80{ 79{
81 80 m_rootcommand = (rootcommand == 0 ? "" : rootcommand);
82 //default settings 81 //default settings
83 m_menustyle.titlefont.set = m_menustyle.framefont.set = m_toolbarstyle.font.set = 82 m_menustyle.titlefont.set = m_menustyle.framefont.set = m_toolbarstyle.font.set =
84 m_windowstyle.font.set = m_windowstyle.tab.font.set = 0; 83 m_windowstyle.font.set = m_windowstyle.tab.font.set = 0;