]> git.lyx.org Git - features.git/commitdiff
compilation fix
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 17 Jan 2002 21:00:58 +0000 (21:00 +0000)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 17 Jan 2002 21:00:58 +0000 (21:00 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3410 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/controllers/ChangeLog
src/frontends/controllers/ControlExternal.C

index c6b0c79ea528d520c76777e55c5b78207a444b1e..b32614b81ee5724814bd06c11ae3a3df82dfb214 100644 (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
index 085475dcf1ca7da455bd6a380a4ad3eeb6eb9277..0c7afb7fe2f6bd23d0d066bd0a4c5461152d8d09 100644 (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);