Cleanup the mess I introduced in rev 22165. This happened frequently lately, I am very sorry!

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22167 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-12-16 11:46:34 +00:00
parent f4ceae1f25
commit f2f7ec1a05
5 changed files with 1 additions and 5 deletions

View File

@ -103,7 +103,6 @@
#include <algorithm>
#include <iomanip>
#include <stack>
#include <stdlib.h>
#include <sstream>
#include <fstream>

View File

@ -66,6 +66,7 @@
#include <iostream>
#include <csignal>
#include <map>
#include <stdlib.h>
#include <string>
#include <vector>
@ -184,7 +185,6 @@ LyX::~LyX()
delete pimpl_;
}
#include <stdlib.h>
void LyX::exit(int exit_code) const
{

View File

@ -19,7 +19,6 @@
#include <exception>
#include <iomanip>
#include <stdlib.h>
using namespace std;
using lyx::lyxerr;

View File

@ -65,7 +65,6 @@
#include <boost/assert.hpp>
#include <stdlib.h>
#include <sstream>
using namespace std;

View File

@ -110,7 +110,6 @@ namespace lyx {
InsetFloat::InsetFloat(BufferParams const & bp, string const & type)
: InsetCollapsable(bp), name_(from_utf8(type))
{
BOOST_ASSERT(false);
setLabel(_("float: ") + floatName(type, bp));
params_.type = type;
}