X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fchset.C;h=eb1ca5146954e74fdaaf9576b073e3c4f7c86e04;hb=646c3127406e1ff1c5aaeb71aa5ea49be0ac8b0e;hp=6a5631566d1d5843526d9895da4bbdc86b871118;hpb=342cdf432246110db37bee4e0aebb4b72c933ddb;p=lyx.git diff --git a/src/chset.C b/src/chset.C index 6a5631566d..eb1ca51469 100644 --- a/src/chset.C +++ b/src/chset.C @@ -22,7 +22,10 @@ #include -using lyx::support::LibFileSearch; + +namespace lyx { + +using support::libFileSearch; using boost::regex; using boost::smatch; @@ -48,7 +51,7 @@ bool CharacterSet::loadFile(string const & fname) // open definition file lyxerr[Debug::KBMAP] << "Reading character set file " << fname << ".cdef" << endl; - string const filename = LibFileSearch("kbd", fname, "cdef"); + string const filename = libFileSearch("kbd", fname, "cdef"); ifstream ifs(filename.c_str()); if (!ifs) { lyxerr << "Unable to open character set file" << endl; @@ -99,3 +102,6 @@ string const & CharacterSet::getName() const { return name_; } + + +} // namespace lyx