mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
fix bad debug messages
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14784 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
440c634377
commit
f46a3db4d8
@ -18,6 +18,8 @@
|
|||||||
|
|
||||||
#include "support/lstrings.h"
|
#include "support/lstrings.h"
|
||||||
|
|
||||||
|
#include <boost/current_function.hpp>
|
||||||
|
|
||||||
using std::string;
|
using std::string;
|
||||||
using std::ostream;
|
using std::ostream;
|
||||||
using std::endl;
|
using std::endl;
|
||||||
@ -26,7 +28,7 @@ using std::endl;
|
|||||||
MathArray & MathInset::cell(idx_type)
|
MathArray & MathInset::cell(idx_type)
|
||||||
{
|
{
|
||||||
static MathArray dummyCell;
|
static MathArray dummyCell;
|
||||||
lyxerr << "I don't have a cell 1" << endl;
|
lyxerr << BOOST_CURRENT_FUNCTION << ": I don't have any cell" << endl;
|
||||||
return dummyCell;
|
return dummyCell;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -34,7 +36,7 @@ MathArray & MathInset::cell(idx_type)
|
|||||||
MathArray const & MathInset::cell(idx_type) const
|
MathArray const & MathInset::cell(idx_type) const
|
||||||
{
|
{
|
||||||
static MathArray dummyCell;
|
static MathArray dummyCell;
|
||||||
lyxerr << "I don't have a cell 2" << endl;
|
lyxerr << BOOST_CURRENT_FUNCTION << ": I don't have any cell" << endl;
|
||||||
return dummyCell;
|
return dummyCell;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user