mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Debug output for paragraph params.
This commit is contained in:
parent
f7065fa22e
commit
eea4ef9b6e
@ -318,6 +318,12 @@ void params2string(Paragraph const & par, string & data)
|
||||
}
|
||||
|
||||
|
||||
LyXErr & operator<<(LyXErr & os, ParagraphParameters const & parp) {
|
||||
parp.write(os.stream());
|
||||
return os;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
bool operator==(ParagraphParameeters const & ps1,
|
||||
ParagraphParameeters const & ps2)
|
||||
|
@ -18,6 +18,7 @@
|
||||
#include "Length.h"
|
||||
#include "Spacing.h"
|
||||
|
||||
#include "support/debug.h"
|
||||
#include "support/types.h"
|
||||
#include "support/docstring.h"
|
||||
|
||||
@ -38,6 +39,8 @@ public:
|
||||
///
|
||||
ParagraphParameters();
|
||||
///
|
||||
friend LyXErr & operator<<(LyXErr & os, ParagraphParameters const & cur);
|
||||
///
|
||||
void clear();
|
||||
///
|
||||
bool sameLayout(ParagraphParameters const &) const;
|
||||
|
Loading…
Reference in New Issue
Block a user