From bc141fe397631326c012df340cfbfa3217544b9a Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Tue, 11 Dec 2007 11:23:35 +0000 Subject: [PATCH] Add selection dbg output git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@22082 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt4/GuiSelection.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frontends/qt4/GuiSelection.cpp b/src/frontends/qt4/GuiSelection.cpp index 29cb8951e7..e8c4d29c35 100644 --- a/src/frontends/qt4/GuiSelection.cpp +++ b/src/frontends/qt4/GuiSelection.cpp @@ -100,6 +100,9 @@ bool GuiSelection::empty() const if (!selection_supported_) return true; + LYXERR(Debug::ACTION) << "GuiSelection::empty: " + << text_selection_empty_ << endl; + return text_selection_empty_; }