X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=src%2Fmain.cc;h=a43d21b11acc192c1b355c7a5c108ca255fdb88e;hb=711e499c703c5bd3a12183c2cbbd3910c7aba99b;hp=af0dcf38b4b6dacf5fdf00d13faef7dbeb92b763;hpb=ace8c8896aa13a6fc4e489277cf9c96f49175322;p=chaz%2Fopenbox diff --git a/src/main.cc b/src/main.cc index af0dcf38..a43d21b1 100644 --- a/src/main.cc +++ b/src/main.cc @@ -1,30 +1,30 @@ -// -*- 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 +*/ #ifdef HAVE_CONFIG_H # include "../config.h" #endif // HAVE_CONFIG_H extern "C" { +#ifdef HAVE_LOCALE_H +# include +#endif // HAVE_LOCALE_H + #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(PACKAGE, "UTF-8"); textdomain(PACKAGE); - //ob::Openbox openbox(argc, argv); - ob::Blackbox blackbox(argc, argv, 0); - - //Blackbox blackbox(argv, session_display, rc_file); - blackbox.eventLoop(); - - return(0); + ob::Openbox openbox(argc, argv); + openbox.eventLoop(); }