From 170adea390243d2ba1179ef5cf9c939562cf1a0f Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Sun, 10 Sep 2006 09:42:02 +0000 Subject: [PATCH] Don't lie in debug messages: s/GuiClipboard/GuiSelection/ git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14959 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/gtk/GuiSelection.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/frontends/gtk/GuiSelection.C b/src/frontends/gtk/GuiSelection.C index 0f30996095..350c08ccdd 100644 --- a/src/frontends/gtk/GuiSelection.C +++ b/src/frontends/gtk/GuiSelection.C @@ -36,7 +36,7 @@ docstring const GuiSelection::get() const Glib::RefPtr clipboard = Gtk::Clipboard::get(GDK_SELECTION_PRIMARY); string const str = clipboard->wait_for_text(); - lyxerr[Debug::ACTION] << "GuiClipboard::get: " << str << endl; + lyxerr[Debug::ACTION] << "GuiSelection::get: " << str << endl; return lyx::from_utf8(str); } @@ -44,7 +44,7 @@ docstring const GuiSelection::get() const void GuiSelection::put(docstring const & str) { string const utf8 = lyx::to_utf8(str); - lyxerr[Debug::ACTION] << "GuiClipboard::put: " << utf8 << endl; + lyxerr[Debug::ACTION] << "GuiSelection::put: " << utf8 << endl; Glib::RefPtr clipboard = Gtk::Clipboard::get(GDK_SELECTION_PRIMARY); clipboard->set_text(utf8); -- 2.39.2