Update of /cvsroot/openvrml/openvrml/src/openvrml-gtkplug
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24618/src/openvrml-gtkplug
Modified Files:
main.cpp
Log Message:
Removed "offset" argument from openvrml-gtkplug's "write" command.
Index: main.cpp
===================================================================
RCS file: /cvsroot/openvrml/openvrml/src/openvrml-gtkplug/main.cpp,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** main.cpp 2 Oct 2006 22:34:34 -0000 1.3
--- main.cpp 28 Nov 2006 06:12:44 -0000 1.4
***************
*** 128,133 ****
plugin_streambuf_map.erase(pos);
} else if (command == "write") {
! size_t stream_id, offset, length;
! command_line_stream >> stream_id >> offset >> length;
plugin_streambuf_map_t::const_iterator pos =
plugin_streambuf_map.find(stream_id);
--- 128,133 ----
plugin_streambuf_map.erase(pos);
} else if (command == "write") {
! size_t stream_id, length;
! command_line_stream >> stream_id >> length;
plugin_streambuf_map_t::const_iterator pos =
plugin_streambuf_map.find(stream_id);
|