From 637a28fe602bdbf7271cf72e532f9bc48b630740 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Wed, 12 Apr 2006 14:02:23 +0000 Subject: [PATCH] Compilation fix: Replace MakeAbsPath with makeAbsPath git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13657 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/frontends/qt2/FileDialog.C | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/frontends/qt2/FileDialog.C b/src/frontends/qt2/FileDialog.C index aee7c55af9..1dd4faaa5e 100644 --- a/src/frontends/qt2/FileDialog.C +++ b/src/frontends/qt2/FileDialog.C @@ -37,7 +37,7 @@ #ifdef USE_NATIVE_FILEDIALOG #include #include "support/filetools.h" -using lyx::support::MakeAbsPath; +using lyx::support::makeAbsPath; #endif using lyx::support::FileFilterList; @@ -79,7 +79,7 @@ FileDialog::Result const FileDialog::save(string const & path, result.first = FileDialog::Chosen; #ifdef USE_NATIVE_FILEDIALOG - string const startsWith = MakeAbsPath(suggested, path); + string const startsWith = makeAbsPath(suggested, path); result.second = fromqstr( QFileDialog::getSaveFileName(toqstr(startsWith), toqstr(filters.as_string()), @@ -114,7 +114,7 @@ FileDialog::Result const FileDialog::open(string const & path, result.first = FileDialog::Chosen; #ifdef USE_NATIVE_FILEDIALOG - string const startsWith = MakeAbsPath(suggested, path); + string const startsWith = makeAbsPath(suggested, path); result.second = fromqstr( QFileDialog::getOpenFileName(toqstr(startsWith), toqstr(filters.as_string()), @@ -146,7 +146,7 @@ FileDialog::Result const FileDialog::opendir(string const & path, result.first = FileDialog::Chosen; #ifdef USE_NATIVE_FILEDIALOG - string const startsWith = MakeAbsPath(suggested, path); + string const startsWith = makeAbsPath(suggested, path); result.second = fromqstr( QFileDialog::getExistingDirectory(toqstr(startsWith), qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(), -- 2.39.2