mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-06 01:15:24 +00:00
better output for "-dbg action"
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@27886 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
4d82d73233
commit
03ebfe5a14
@ -11,6 +11,7 @@
|
|||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
#include "FuncRequest.h"
|
#include "FuncRequest.h"
|
||||||
|
#include "LyXAction.h"
|
||||||
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <sstream>
|
#include <sstream>
|
||||||
@ -107,7 +108,8 @@ bool operator==(FuncRequest const & lhs, FuncRequest const & rhs)
|
|||||||
ostream & operator<<(ostream & os, FuncRequest const & cmd)
|
ostream & operator<<(ostream & os, FuncRequest const & cmd)
|
||||||
{
|
{
|
||||||
return os
|
return os
|
||||||
<< " action: " << cmd.action
|
<< " action: " << cmd.action
|
||||||
|
<< " [" << lyxaction.getActionName(cmd.action) << "] "
|
||||||
<< " arg: '" << to_utf8(cmd.argument()) << "'"
|
<< " arg: '" << to_utf8(cmd.argument()) << "'"
|
||||||
<< " x: " << cmd.x
|
<< " x: " << cmd.x
|
||||||
<< " y: " << cmd.y;
|
<< " y: " << cmd.y;
|
||||||
|
@ -57,6 +57,8 @@ What's new
|
|||||||
- Speed up editing when the document contains paragraphs with many (>1000)
|
- Speed up editing when the document contains paragraphs with many (>1000)
|
||||||
insets (bug 4443).
|
insets (bug 4443).
|
||||||
|
|
||||||
|
- Improve debug output when tracing what actions are triggered.
|
||||||
|
|
||||||
* DOCUMENTATION AND LOCALIZATION
|
* DOCUMENTATION AND LOCALIZATION
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user