summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2006-06-01 00:03:09 +0000
committerishmal <ishmal@users.sourceforge.net>2006-06-01 00:03:09 +0000
commit0f353d524b1209a76de86e8f16dfeb0eefbaea2c (patch)
treeba69a5ad96a86aecbbccdb3af328b8c186c87cf5 /src
parentSmall update to match the tutorial. (diff)
downloadinkscape-0f353d524b1209a76de86e8f16dfeb0eefbaea2c.tar.gz
inkscape-0f353d524b1209a76de86e8f16dfeb0eefbaea2c.zip
Misnamed var popen_mode_cur
(bzr r1108)
Diffstat (limited to 'src')
-rw-r--r--src/extension/implementation/script.cpp4
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;