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:
Jean-Marc Lasgouttes 2008-12-15 16:38:18 +00:00
parent 4d82d73233
commit 03ebfe5a14
2 changed files with 5 additions and 1 deletions

View File

@ -11,6 +11,7 @@
#include <config.h>
#include "FuncRequest.h"
#include "LyXAction.h"
#include <iostream>
#include <sstream>
@ -107,7 +108,8 @@ bool operator==(FuncRequest const & lhs, FuncRequest const & rhs)
ostream & operator<<(ostream & os, FuncRequest const & cmd)
{
return os
<< " action: " << cmd.action
<< " action: " << cmd.action
<< " [" << lyxaction.getActionName(cmd.action) << "] "
<< " arg: '" << to_utf8(cmd.argument()) << "'"
<< " x: " << cmd.x
<< " y: " << cmd.y;

View File

@ -57,6 +57,8 @@ What's new
- Speed up editing when the document contains paragraphs with many (>1000)
insets (bug 4443).
- Improve debug output when tracing what actions are triggered.
* DOCUMENTATION AND LOCALIZATION