aboutsummaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-07-25 10:03:55 (GMT)
committerrathnor <rathnor>2003-07-25 10:03:55 (GMT)
commitac7edef9ad73818435420479a0dfa9c5ed517a79 (patch)
tree4fd531858253a00bd36689153e6c83c65890df39 /src/main.cc
parent9ca1f367cb9eef78ee1871fe5b96298f8325d987 (diff)
downloadfluxbox-ac7edef9ad73818435420479a0dfa9c5ed517a79.zip
fluxbox-ac7edef9ad73818435420479a0dfa9c5ed517a79.tar.bz2
make sure all menus have titles, make -version go to stdout
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc
index 7a82857..ecaff6a 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -20,7 +20,7 @@
20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
21// DEALINGS IN THE SOFTWARE. 21// DEALINGS IN THE SOFTWARE.
22 22
23// $Id: main.cc,v 1.21 2003/07/18 15:44:36 rathnor Exp $ 23// $Id: main.cc,v 1.22 2003/07/25 10:03:55 rathnor Exp $
24 24
25#include "fluxbox.hh" 25#include "fluxbox.hh"
26#include "I18n.hh" 26#include "I18n.hh"
@@ -176,7 +176,7 @@ int main(int argc, char **argv) {
176 } 176 }
177 } else if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "-v") == 0) { 177 } else if (strcmp(argv[i], "-version") == 0 || strcmp(argv[i], "-v") == 0) {
178 // print current version string 178 // print current version string
179 cerr<<"Fluxbox "<<__fluxbox_version<<" : (c) 2001-2003 Henrik Kinnunen "<<endl<<endl; 179 cout<<"Fluxbox "<<__fluxbox_version<<" : (c) 2001-2003 Henrik Kinnunen "<<endl<<endl;
180 exit(0); 180 exit(0);
181 } else if (strcmp(argv[i], "-log") == 0 ) { 181 } else if (strcmp(argv[i], "-log") == 0 ) {
182 if (i + 1 >= argc) { 182 if (i + 1 >= argc) {