Ignore:
Timestamp:
2002-06-24T21:24:11+12:00 (22 years ago)
Author:
sjboddie
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/protemix/src/recpt/ptmxqueryaction.cpp

    r3167 r3177  
    110110
    111111  if (!args["c1"].empty() && args["c1"] != "Any") {
    112     formattedstring = "[" + args["c1"] + "]:CL";
     112    //    formattedstring = "[" + args["c1"] + "]:CL";
     113    formattedstring = args["c1"];
    113114  }
    114115  if (!args["c2"].empty() && args["c2"] != "Any") {
    115116    if (!formattedstring.empty()) formattedstring += " & ";
    116     formattedstring += "[" + args["c2"] + "]:CA";
     117    //    formattedstring += "[" + args["c2"] + "]:CA";
     118    formattedstring += args["c2"];
    117119  }
    118120  if (!args["c3"].empty() && args["c3"] != "Any") {
    119121    if (!formattedstring.empty()) formattedstring += " & ";
    120     formattedstring += "[" + args["c3"] + "]:CS";
     122    //    formattedstring += "[" + args["c3"] + "]:CS";
     123    formattedstring += args["c3"];
    121124  }
    122125  if (!args["q"].empty()) {
Note: See TracChangeset for help on using the changeset viewer.