]> git.lyx.org Git - features.git/commitdiff
Don't lie in debug messages: s/GuiClipboard/GuiSelection/
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 10 Sep 2006 09:42:02 +0000 (09:42 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Sun, 10 Sep 2006 09:42:02 +0000 (09:42 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14959 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/gtk/GuiSelection.C

index 0f30996095e242c28bd68d2e6f730ce48e099191..350c08ccdd736bf96b99ce006613c472a6cd1b09 100644 (file)
@@ -36,7 +36,7 @@ docstring const GuiSelection::get() const
        Glib::RefPtr<Gtk::Clipboard> 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<Gtk::Clipboard> clipboard =
                Gtk::Clipboard::get(GDK_SELECTION_PRIMARY);
        clipboard->set_text(utf8);