all repos — fluxbox @ 2ccb65515c80d2cd65c7d3bd256a686b4022b791

custom fork of the fluxbox windowmanager

copyrigth fix, thanks php-coder
fluxgen fluxgen
commit

2ccb65515c80d2cd65c7d3bd256a686b4022b791

parent

c8885d8d9b208286ea3c1afe96935901f66bfa18

1 files changed, 5 insertions(+), 5 deletions(-)

jump to
M util/fbsetroot.ccutil/fbsetroot.cc

@@ -380,10 +380,10 @@ Shows information about usage

*/ void fbsetroot::usage(int exit_code) { _FB_USES_NLS; - cerr<<m_app_name<<" 2.3 : (c) 2003-2005 Fluxbox Development Team"<<endl; - cerr<<m_app_name<<" 2.1 : (c) 2002 Claes Nasten"<<endl; - cerr<<m_app_name<<" 2.0 : (c) 1997-2000 Brad Hughes\n"<<endl; - cerr<<_FBTEXT(fbsetroot, Usage, + cout << m_app_name << " 2.3 : (c) 2003-2005 Fluxbox Development Team" << endl; + cout << m_app_name << " 2.1 : (c) 2002 Claes Nasten" << endl; + cout << m_app_name << " 2.0 : (c) 1997-2000 Brad Hughes\n" << endl; + cout << _FBTEXT(fbsetroot, Usage, " -display <string> display connection\n" " -mod <x> <y> modula pattern\n" " -foreground, -fg <color> modula foreground color\n"

@@ -393,7 +393,7 @@ " -from <color> gradient start color\n"

" -to <color> gradient end color\n\n" " -solid <color> solid color\n\n" " -help print this help text and exit\n", - "fbsetroot usage options")<<endl; + "fbsetroot usage options") << endl; exit(exit_code); }