From 03ebfe5a149bbe20bd5cf857ed0632bcc428df75 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Mon, 15 Dec 2008 16:38:18 +0000 Subject: [PATCH] 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 --- src/FuncRequest.cpp | 4 +++- status.16x | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/FuncRequest.cpp b/src/FuncRequest.cpp index 691456a69a..e7112f6ea4 100644 --- a/src/FuncRequest.cpp +++ b/src/FuncRequest.cpp @@ -11,6 +11,7 @@ #include #include "FuncRequest.h" +#include "LyXAction.h" #include #include @@ -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; diff --git a/status.16x b/status.16x index 0d5b16df1e..b5df2a5c84 100644 --- a/status.16x +++ b/status.16x @@ -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