summaryrefslogtreecommitdiff
path: root/project2/fileRows.cpp
diff options
context:
space:
mode:
authorrandomdan <randomdan@localhost>2010-07-28 23:17:07 +0000
committerrandomdan <randomdan@localhost>2010-07-28 23:17:07 +0000
commit7fa007189841b6de90ac54e6c042e601c0b9d56a (patch)
tree777214cb0970fc50b7e4b996757fdd02d026d2e3 /project2/fileRows.cpp
parentTidy up no longer required parameters passed to execute (diff)
downloadproject2-7fa007189841b6de90ac54e6c042e601c0b9d56a.tar.bz2
project2-7fa007189841b6de90ac54e6c042e601c0b9d56a.tar.xz
project2-7fa007189841b6de90ac54e6c042e601c0b9d56a.zip
Fix typo in class name
Add file channel suitable for processes
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 57ff8e5..c2a3a09 100644
--- a/project2/fileRows.cpp
+++ b/project2/fileRows.cpp
@@ -40,7 +40,7 @@ _FileRows::execute() const
if (!f) {
throw std::runtime_error("Could not open file");
}
- FileStrChannel c(f);
+ FileStarChannel c(f);
c.set_encoding(encoding);
c.set_line_term(newline);
Glib::ustring line;