summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2011-05-16 16:02:09 +0000
committerrandomdan <randomdan@localhost>2011-05-16 16:02:09 +0000
commit900fd446e8963eae71f6a92cd237d145b8ff4345 (patch)
treea92c5ac2addb288c64ca43983bed4b2207611420
parentSupport setting presenter node namespaces directly (diff)
downloadproject2-900fd446e8963eae71f6a92cd237d145b8ff4345.tar.bz2
project2-900fd446e8963eae71f6a92cd237d145b8ff4345.tar.xz
project2-900fd446e8963eae71f6a92cd237d145b8ff4345.zip
Fix quoting issue, screw old versions of boost
-rw-r--r--project2/fsRows.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/fsRows.cpp b/project2/fsRows.cpp
index c8a711c..868eaa7 100644
--- a/project2/fsRows.cpp
+++ b/project2/fsRows.cpp
@@ -41,7 +41,7 @@ class FsRowSpecName : public FsRows::SpecBase {
// Based on code written by Jack Handy - jakkhandy@hotmail.com
// from http://www.codeproject.com/KB/string/wildcmp.aspx
Glib::ustring::const_iterator wild = pattern.begin();
- Glib::ustring leaf(boost::lexical_cast<Glib::ustring>(curPath(fs).leaf()));
+ Glib::ustring leaf(curPath(fs).leaf().string());
Glib::ustring::const_iterator string = leaf.begin();
while ((string != leaf.end()) && (*wild != '*')) {