diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-06-01 00:03:09 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-06-01 00:03:09 +0000 |
| commit | 0f353d524b1209a76de86e8f16dfeb0eefbaea2c (patch) | |
| tree | ba69a5ad96a86aecbbccdb3af328b8c186c87cf5 /src/extension/implementation/script.cpp | |
| parent | Small update to match the tutorial. (diff) | |
| download | inkscape-0f353d524b1209a76de86e8f16dfeb0eefbaea2c.tar.gz inkscape-0f353d524b1209a76de86e8f16dfeb0eefbaea2c.zip | |
Misnamed var popen_mode_cur
(bzr r1108)
Diffstat (limited to 'src/extension/implementation/script.cpp')
| -rw-r--r-- | src/extension/implementation/script.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/extension/implementation/script.cpp b/src/extension/implementation/script.cpp index ae3c243ce..11544463d 100644 --- a/src/extension/implementation/script.cpp +++ b/src/extension/implementation/script.cpp @@ -1190,10 +1190,10 @@ bool pipe_t::open(const Glib::ustring &command, Glib::ustring popen_mode; if ( (mode_p & mode_read) != 0 ) - popen_mode_cur.append("r"); + popen_mode.append("r"); if ( (mode_p & mode_write) != 0 ) - popen_mode_cur.append("w"); + popen_mode.append("w"); // Get the commandline to be run Glib::ustring pipeStr = command; |
