]> Dogcows Code - chaz/vimcoder/commitdiff
insert separator between C++ output stream ops
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Tue, 14 Dec 2010 23:39:28 +0000 (16:39 -0700)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Tue, 14 Dec 2010 23:39:28 +0000 (16:39 -0700)
fixes #21

src/com/dogcows/Editor.java

index 57e1b779a2a74aedb9f71aa5b1ac26e60d3c1e16..ea6805849419036d6d73dcffe7d3ad4c056e35d3 100644 (file)
@@ -97,7 +97,7 @@ public class Editor
                                                                                                  language));
                terms.put("METHODPARAMNAMES",     Util.join(component.getParamNames(), ", "));
                terms.put("METHODPARAMSTREAMIN",  Util.join(component.getParamNames(), " >> "));
-               terms.put("METHODPARAMSTREAMOUT", Util.join(component.getParamNames(), " << "));
+               terms.put("METHODPARAMSTREAMOUT", Util.join(component.getParamNames(), " << \", \" << "));
                terms.put("METHODPARAMDECLARES",  getMethodParamDeclarations(component.getParamTypes(),
                                                                                                                                         component.getParamNames(),
                                                                                                                                         language));
This page took 0.019771 seconds and 4 git commands to generate.