]> git.lyx.org Git - lyx.git/commitdiff
Compilation fix: Replace MakeAbsPath with makeAbsPath
authorAbdelrazak Younes <younes@lyx.org>
Wed, 12 Apr 2006 13:53:01 +0000 (13:53 +0000)
committerAbdelrazak Younes <younes@lyx.org>
Wed, 12 Apr 2006 13:53:01 +0000 (13:53 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@13656 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/FileDialog.C

index 2bbe102a3e25210c9d159a543b90aa502d29cdb0..fda0481e5611a9e4f5b60622feeada8d2b550f4c 100644 (file)
@@ -37,7 +37,7 @@
 #ifdef USE_NATIVE_FILEDIALOG
 #include <qapplication.h>
 #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(
                Q3FileDialog::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(
                Q3FileDialog::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(
                Q3FileDialog::getExistingDirectory(toqstr(startsWith),
                                                  qApp->focusWidget() ? qApp->focusWidget() : qApp->mainWidget(),