From 10a91403f6e3433a17432c1c0445e07160bbae5a Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Fri, 6 Apr 2007 12:31:33 +0000 Subject: [PATCH] remove unneeded lyx qualifier git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17744 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/controllers/ControlAboutlyx.C | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/frontends/controllers/ControlAboutlyx.C b/src/frontends/controllers/ControlAboutlyx.C index 95b766f89a..d6f9304221 100644 --- a/src/frontends/controllers/ControlAboutlyx.C +++ b/src/frontends/controllers/ControlAboutlyx.C @@ -55,28 +55,28 @@ void ControlAboutlyx::getCredits(ostream & ss) const } if (!found) { - ss << lyx::to_utf8(_("ERROR: LyX wasn't able to read CREDITS file\n")) - << lyx::to_utf8(_("Please install correctly to estimate the great\n")) - << lyx::to_utf8(_("amount of work other people have done for the LyX project.")); + ss << to_utf8(_("ERROR: LyX wasn't able to read CREDITS file\n")) + << to_utf8(_("Please install correctly to estimate the great\n")) + << to_utf8(_("amount of work other people have done for the LyX project.")); } } string const ControlAboutlyx::getCopyright() const { - return lyx::to_utf8(_("LyX is Copyright (C) 1995 by Matthias Ettrich,\n1995-2006 LyX Team")); + return to_utf8(_("LyX is Copyright (C) 1995 by Matthias Ettrich,\n1995-2006 LyX Team")); } string const ControlAboutlyx::getLicense() const { - return lyx::to_utf8(_("This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.")); + return to_utf8(_("This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.")); } string const ControlAboutlyx::getDisclaimer() const { - return lyx::to_utf8(_("LyX is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.")); + return to_utf8(_("LyX is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\nSee the GNU General Public License for more details.\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.")); } @@ -84,16 +84,16 @@ string const ControlAboutlyx::getVersion() const { ostringstream ss; - ss << lyx::to_utf8(_("LyX Version ")) + ss << to_utf8(_("LyX Version ")) << lyx_version << " (" << lyx_release_date << ")\n" - << lyx::to_utf8(_("Library directory: ")) - << lyx::to_utf8(makeDisplayPath(package().system_support())) + << to_utf8(_("Library directory: ")) + << to_utf8(makeDisplayPath(package().system_support())) << "\n" - << lyx::to_utf8(_("User directory: ")) - << lyx::to_utf8(makeDisplayPath(package().user_support())); + << to_utf8(_("User directory: ")) + << to_utf8(makeDisplayPath(package().user_support())); return ss.str(); } -- 2.39.2