aboutsummaryrefslogtreecommitdiff
path: root/src/Theme.cc
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2002-01-18 01:28:34 (GMT)
committerfluxgen <fluxgen>2002-01-18 01:28:34 (GMT)
commit546fa005eae397dd624b81ad00c594eaad67d893 (patch)
tree4f6251417ae7fad969bcbbe0edda74f25e9306c7 /src/Theme.cc
parent5cc64f4eb3f1a5cf5ec706cbc05c9eef8bf3ccf3 (diff)
downloadfluxbox-546fa005eae397dd624b81ad00c594eaad67d893.zip
fluxbox-546fa005eae397dd624b81ad00c594eaad67d893.tar.bz2
fixed a ifdef debug
Diffstat (limited to 'src/Theme.cc')
-rw-r--r--src/Theme.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/Theme.cc b/src/Theme.cc
index 5377ecb..c72631a 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.14 2002/01/11 10:43:55 fluxgen Exp $ 44// $Id: Theme.cc,v 1.15 2002/01/18 01:28:34 fluxgen Exp $
45 45
46#ifndef _GNU_SOURCE 46#ifndef _GNU_SOURCE
47#define _GNU_SOURCE 47#define _GNU_SOURCE
@@ -664,8 +664,10 @@ void Theme::loadRootCommand() {
664 string displaystring("DISPLAY="); 664 string displaystring("DISPLAY=");
665 displaystring.append(DisplayString(m_display)); 665 displaystring.append(DisplayString(m_display));
666 displaystring.append(tmpstring); // append m_screennum 666 displaystring.append(tmpstring); // append m_screennum
667 #ifdef DEBUG
667 cerr<<__FILE__<<"("<<__LINE__<<"): displaystring="<<displaystring.c_str()<<endl; 668 cerr<<__FILE__<<"("<<__LINE__<<"): displaystring="<<displaystring.c_str()<<endl;
668 669 #endif
670
669 bexec(m_rootcommand.c_str(), const_cast<char *>(displaystring.c_str())); 671 bexec(m_rootcommand.c_str(), const_cast<char *>(displaystring.c_str()));
670 672
671 #else // __EMX__ 673 #else // __EMX__