From b2e80ea2a40a31ade7b73de720ba26b2d2cc86db Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Fri, 6 Apr 2007 11:20:09 +0000 Subject: [PATCH] remove unneeded lyx qualifier git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17743 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/support/package.C.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/support/package.C.in b/src/support/package.C.in index bdeb4a141e..7d82416773 100644 --- a/src/support/package.C.in +++ b/src/support/package.C.in @@ -428,7 +428,7 @@ string const abs_path_from_binary_name(string const & exe) throw ExceptionMessage(ErrorException, _("LyX binary not found"), bformat(_("Unable to determine the path to the LyX binary from the command line %1$s"), - lyx::from_utf8(exe))); + from_utf8(exe))); } return abs_binary; } @@ -554,7 +554,7 @@ get_system_support_dir(string const & abs_binary, "set the environment variable LYX_DIR_15x to " "the LyX system directory containing the file " "`chkconfig.ltx'."), - lyx::from_utf8(searched_dirs_str))); + from_utf8(searched_dirs_str))); // Keep the compiler happy. return string(); @@ -633,8 +633,8 @@ bool check_command_line_dir(string const & dir, // FIXME UNICODE throw ExceptionMessage(WarningException, _("File not found"), bformat( _("Invalid %1$s switch.\nDirectory %2$s does not contain %3$s."), - lyx::from_utf8(command_line_switch), lyx::from_utf8(dir), - lyx::from_utf8(file))); + from_utf8(command_line_switch), from_utf8(dir), + from_utf8(file))); } return !abs_path.empty(); @@ -661,8 +661,8 @@ bool check_env_var_dir(string const & dir, throw ExceptionMessage(WarningException, _("File not found"), bformat( _("Invalid %1$s environment variable.\n" "Directory %2$s does not contain %3$s."), - lyx::from_utf8(env_var), lyx::from_utf8(dir), - lyx::from_utf8(file))); + from_utf8(env_var), from_utf8(dir), + from_utf8(file))); } return !abs_path.empty(); @@ -687,7 +687,7 @@ bool check_env_var_dir(string const & dir, _("Invalid %1$s environment variable.\n%2$s is not a directory."); throw ExceptionMessage(WarningException, _("Directory not found"), bformat( - fmt, lyx::from_utf8(env_var), lyx::from_utf8(dir))); + fmt, from_utf8(env_var), from_utf8(dir))); } return success; -- 2.39.2