]> git.lyx.org Git - lyx.git/commitdiff
remove unneeded lyx qualifier
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Fri, 6 Apr 2007 11:20:09 +0000 (11:20 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Fri, 6 Apr 2007 11:20:09 +0000 (11:20 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17743 a592a061-630c-0410-9148-cb99ea01b6c8

src/support/package.C.in

index bdeb4a141e51475e1c4a343c12628ec71629ae04..7d8241677357e3b999a4d566a7fe7a6067bc3dfd 100644 (file)
@@ -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"),
                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;
 }
        }
        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'."),
                                         "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();
 
        // 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."),
                // 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();
        }
 
        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."),
                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();
        }
 
        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(
                        _("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;
        }
 
        return success;