X-Git-Url: https://git.brokenzipper.com/gitweb?a=blobdiff_plain;f=src%2Fmain.cc;h=94fefacc459c7d0001f376edd9342357ccbaf6d1;hb=88dbe7c24863ebb77446a1e2b7c3ceb46422a89c;hp=1d6ce0b1e3e4360792517fb3c5f201484726c14c;hpb=700984bd150d98a6876c117c2e1b1b3c72cffce1;p=chaz%2Fopenbox diff --git a/src/main.cc b/src/main.cc index 1d6ce0b1..94fefacc 100644 --- a/src/main.cc +++ b/src/main.cc @@ -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 @@ -16,23 +16,15 @@ extern "C" { #include "gettext.h" } -#include -using std::string; - -#include "blackbox.hh" #include "openbox.hh" int main(int argc, char **argv) { // initialize the locale setlocale(LC_ALL, ""); bindtextdomain(PACKAGE, LOCALEDIR); + bind_textdomain_codeset(GETTEXT_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); }