]> Dogcows Code - chaz/openbox/blobdiff - src/main.cc
reorder how theyre destroyed, probably doesnt matter anyways.
[chaz/openbox] / src / main.cc
index 5b6c7885d66a8e15ae1d1bb55aac8acacc5890d9..a422563d72d9e9cb504816598349be50ca9e5241 100644 (file)
@@ -1,4 +1,4 @@
-// -*- mode: C++; indent-tabs-mode: nil; -*-
+// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
 
 /*! @file main.cc
   @brief Main entry point for the application
@@ -13,26 +13,23 @@ extern "C" {
 # include <locale.h>
 #endif // HAVE_LOCALE_H
 
+#ifdef    HAVE_STDIO_H
+# include <stdio.h>
+#endif // HAVE_STDIO_H
+
 #include "gettext.h"
 }
 
-#include <string>
-using std::string;
-
-#include "blackbox.hh"
 #include "openbox.hh"
 
 int main(int argc, char **argv) {
   // initialize the locale
-  setlocale(LC_ALL, "");
+  if (!setlocale(LC_ALL, ""))
+    printf("Couldn't set locale from environment.\n");
   bindtextdomain(PACKAGE, LOCALEDIR);
+  bind_textdomain_codeset(PACKAGE, "UTF-8");
   textdomain(PACKAGE);
 
   ob::Openbox openbox(argc, argv);
-  //ob::Blackbox blackbox(argc, argv, 0);
-  
-  //Blackbox blackbox(argv, session_display, rc_file);
   openbox.eventLoop();
-
-  return(0);
 }
This page took 0.023022 seconds and 4 git commands to generate.