summaryrefslogtreecommitdiff
path: root/project2/fileRows.cpp
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2010-08-12 19:31:46 +0000
committerrandomdan <randomdan@localhost>2010-08-12 19:31:46 +0000
commited9f706d181b174ff8cec211ff2c0563020820f5 (patch)
tree45f0b63e8df81072e956916b0d502c7504aa66b5 /project2/fileRows.cpp
parentAdd gcc attrib to stringf (diff)
downloadproject2-ed9f706d181b174ff8cec211ff2c0563020820f5.tar.bz2
project2-ed9f706d181b174ff8cec211ff2c0563020820f5.tar.xz
project2-ed9f706d181b174ff8cec211ff2c0563020820f5.zip
Bind merge populators recursively to leafs
Make path in file based rows a variable Fix variable cache invalidation on parent row change Use new features to only load new files
Diffstat (limited to 'project2/fileRows.cpp')
-rw-r--r--project2/fileRows.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/project2/fileRows.cpp b/project2/fileRows.cpp
index d9c26bc..5c499ff 100644
--- a/project2/fileRows.cpp
+++ b/project2/fileRows.cpp
@@ -130,7 +130,7 @@ _FileRows::addColumn(const Glib::ustring & rawtok) const
FileStarChannel
_FileRows::doOpen() const
{
- FILE * f = fopen(path.c_str(), "r");
+ FILE * f = fopen(path->c_str(), "r");
if (!f) {
throw std::runtime_error("Could not open file");
}