Compilation fixes.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6450 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2003-03-11 17:55:58 +00:00
parent 31e8978f2b
commit 141b2a92db
2 changed files with 2 additions and 4 deletions

View File

@ -12,8 +12,6 @@
#include "insethfill.h"
#include "BufferView.h"
#include "support/LOstream.h"
using std::ostream;
@ -38,7 +36,7 @@ int InsetHFill::ascii(Buffer const *, ostream & os, int) const
}
void InsetHFill::write(Buffer const * buf, ostream & os) const
void InsetHFill::write(Buffer const *, ostream & os) const
{
os << "\n\\hfill \n";
}

View File

@ -32,7 +32,7 @@ public:
///
int ascii(Buffer const *, std::ostream &, int linelen) const;
///
void write(Buffer const * buf, ostream & os) const;
void write(Buffer const * buf, std::ostream & os) const;
/// We don't need \begin_inset and \end_inset
bool directWrite() const { return true; }
};