summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-03-06 09:41:40 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-03-06 11:26:36 +0000
commit681c6b470a84b7fdd0aa91c23233ecb39ce2d37b (patch)
treed44efe68cc4b7fcb2075a78c0112148289913cf7 /vcl/unx/gtk
parent78719066cb546c7dc74e87488b9b7a695606cf7c (diff)
improve debugging message
Diffstat (limited to 'vcl/unx/gtk')
-rw-r--r--vcl/unx/gtk/window/gtkframe.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/vcl/unx/gtk/window/gtkframe.cxx b/vcl/unx/gtk/window/gtkframe.cxx
index 1cd1bd0f53b4..24336cec98a0 100644
--- a/vcl/unx/gtk/window/gtkframe.cxx
+++ b/vcl/unx/gtk/window/gtkframe.cxx
@@ -3987,7 +3987,9 @@ void GtkSalFrame::IMHandler::signalIMPreeditChanged( GtkIMContext*, gpointer im_
for (int i = start; i < end; ++i)
{
SAL_WARN_IF(i >= static_cast<int>(pThis->m_aInputFlags.size()),
- "vcl.gtk", "pango attrib out of range?");
+ "vcl.gtk", "pango attrib out of range. Broken range: "
+ << start << "," << end << " Legal range: 0,"
+ << pThis->m_aInputFlags.size());
if (i >= static_cast<int>(pThis->m_aInputFlags.size()))
continue;
pThis->m_aInputFlags[i] |= sal_attr;