compilation fix

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3410 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2002-01-17 21:00:58 +00:00
parent cc3670f9fd
commit 86aa40061e
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-01-17 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* ControlExternal.C (Browse): add a std:: qualifier
2002-01-16 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* ControlExternal.C (Browse): simplify to use browseRelFile

View File

@ -163,7 +163,7 @@ string const ControlExternal::Browse(string const & input) const
// FIXME: a temporary hack until the FileDialog interface is updated
pattern += "|";
pair<string, string> dir1(N_("Documents|#o#O"),
std::pair<string, string> dir1(N_("Documents|#o#O"),
string(lyxrc.document_path));
return browseRelFile(&lv_, input, bufpath, title, pattern, dir1);