lyx_mirror/src/output.C

41 lines
841 B
C++
Raw Normal View History

/**
* \file output.C
* This file is part of LyX, the document processor.
* Licence details can be found in the file COPYING.
*
* \author Lars Gullik Bj<EFBFBD>nnes
*
* Full author contact details are available in file CREDITS.
*/
#include <config.h>
#include "output.h"
#include "gettext.h"
#include "frontends/Alert.h"
#include "support/filetools.h"
#include <fstream>
using lyx::support::bformat;
using lyx::support::makeDisplayPath;
using std::ofstream;
using std::string;
bool openFileWrite(ofstream & ofs, string const & fname)
{
ofs.open(fname.c_str());
if (!ofs) {
string const file = makeDisplayPath(fname, 50);
string text = bformat(lyx::to_utf8(_("Could not open the specified "
"document\n%1$s.")), file);
Alert::error(lyx::to_utf8(_("Could not open file")), text);
return false;
}
return true;
}