mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
8c93f63b48
letter start with a lower letter. * All other .C and .h in the cs: adjust for above change git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13603 a592a061-630c-0410-9148-cb99ea01b6c8
41 lines
807 B
C
41 lines
807 B
C
/**
|
|
* \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ø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(_("Could not open the specified "
|
|
"document\n%1$s."), file);
|
|
Alert::error(_("Could not open file"), text);
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|