improve debug information

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27885 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2008-12-15 15:47:33 +00:00
parent fc60fd3fc3
commit 85822a8784

View File

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