mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +00:00
getting rid of more superfluous lyx::support:: statements.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22107 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
7c392af6ea
commit
717105bfe7
@ -300,7 +300,7 @@ docstring const romanCounter(int const n)
|
||||
|
||||
docstring const lowerromanCounter(int const n)
|
||||
{
|
||||
return support::lowercase(romanCounter(n));
|
||||
return lowercase(romanCounter(n));
|
||||
}
|
||||
|
||||
} // namespace anon
|
||||
|
@ -43,8 +43,8 @@ namespace lyx {
|
||||
|
||||
namespace {
|
||||
|
||||
class LaunchIspell : public support::ForkedProcess {
|
||||
typedef support::ForkedProcess ForkedProcess;
|
||||
class LaunchIspell : public ForkedProcess
|
||||
{
|
||||
public:
|
||||
///
|
||||
LaunchIspell(BufferParams const & p, string const & l,
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include <ostream>
|
||||
|
||||
using namespace std;
|
||||
using namespace lyx::support;
|
||||
|
||||
namespace lyx {
|
||||
|
||||
@ -37,7 +38,7 @@ Language latex_lang("latex", "", "Latex", false, "", 0, "latex", "");
|
||||
Language const * latex_language = &latex_lang;
|
||||
|
||||
|
||||
void Languages::read(support::FileName const & filename)
|
||||
void Languages::read(FileName const & filename)
|
||||
{
|
||||
// We need to set the encoding of latex_lang
|
||||
latex_lang = Language("latex", "", "Latex", false, "iso8859-1",
|
||||
|
Loading…
Reference in New Issue
Block a user