mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
da9cdaf218
* src/main.C (main): return LyX::exec() * src/frontends/{gtk,qt3,qt4}/lyx_gui.C (lyx_gui::exec): Change return value to int (lyx_gui::start): ditto * src/frontends/qt[3,4]/lyx_gui.C (lyx_gui::exit): Call QApplication::exit instead of ::exit, this hack is not needed anymore * src/frontends/lyx_gui.h (lyx_gui::exec): Change return value to int (lyx_gui::start): ditto * src/lyxtextclasslist.[Ch] (LyXSetStyle): SChange return value to bool and don't call ::exit * src/lyx_main.C (showFileError): Don't exit anymore * src/lyx_main.[Ch] (LyX::exec): Change return value to int (LyX::priv_exec): ditto (LyX::exec2): ditto (LyX::init): Change return value to bool (LyX::readRcFile): ditto (LyX::readUIFile): ditto git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14339 a592a061-630c-0410-9148-cb99ea01b6c8
49 lines
958 B
C
49 lines
958 B
C
/**
|
|
* \file main.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Lars Gullik Bjønnes
|
|
* \author Jean Marc Lasgouttes
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "debug.h"
|
|
#include "lyx_main.h"
|
|
#include "gettext.h"
|
|
|
|
#include "support/os.h"
|
|
|
|
#include <boost/filesystem/path.hpp>
|
|
|
|
#ifdef HAVE_IOS
|
|
#include <ios>
|
|
#endif
|
|
|
|
|
|
namespace os = lyx::support::os;
|
|
namespace fs = boost::filesystem;
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
#ifdef HAVE_IOS
|
|
std::ios_base::sync_with_stdio(false);
|
|
#endif
|
|
fs::path::default_name_check(fs::no_check);
|
|
|
|
// To avoid ordering of global object problems with some
|
|
// stdlibs we do the initialization here, but still as
|
|
// early as possible.
|
|
lyxerr.rdbuf(std::cerr.rdbuf());
|
|
|
|
os::init(argc, argv);
|
|
|
|
// initialize for internationalized version *EK*
|
|
locale_init();
|
|
|
|
return LyX::exec(argc, argv);
|
|
}
|