Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r73682 - trunk/tools/quickbook/src
From: dnljms_at_[hidden]
Date: 2011-08-11 17:19:25


Author: danieljames
Date: 2011-08-11 17:19:24 EDT (Thu, 11 Aug 2011)
New Revision: 73682
URL: http://svn.boost.org/trac/boost/changeset/73682

Log:
Quickbook: Fix encoding of filename in include and import.
Text files modified:
   trunk/tools/quickbook/src/actions.cpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/tools/quickbook/src/actions.cpp
==============================================================================
--- trunk/tools/quickbook/src/actions.cpp (original)
+++ trunk/tools/quickbook/src/actions.cpp 2011-08-11 17:19:24 EDT (Thu, 11 Aug 2011)
@@ -1775,7 +1775,7 @@
                 quickbook::actions const& actions)
         {
             fs::path current = actions.filename.parent_path();
- fs::path path(name);
+ fs::path path = detail::generic_to_path(name);
 
             // If the path is relative, try and resolve it.
             if (!path.has_root_directory() && !path.has_root_name())


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk