Date Dev Ver Change details
---------- --- ------ --------------
+2009-09-24 GL 1.10.1 Reverse engineer function defaults values correctly.
2009-09-18 DP 1.10.1 Fix a potential crash in the edit grid.
2009-09-17 GL 1.12.0 Add a button to open the query tool with the query
selected in the frmStatus window.
// Check if it is a window function
function->iSetIsWindow(functions->GetBool(wxT("proiswindow")));
}
- else
+ else
function->iSetIsWindow(false);
// Now iterate the arguments and build the arrays
if (isProcedure)
mode = wxT("IN OUT");
else
+ {
mode = wxT("INOUT");
+ nArgsIN++;
+ }
else if (mode == wxT("3"))
mode = wxT("IN OUT");
else if (mode == wxT("v"))
for (size_t index = 0; index < function->GetArgModesArray().Count(); index++)
{
if (function->GetArgModesArray()[index] == wxT("IN") ||
+ function->GetArgModesArray()[index] == wxT("INOUT") ||
function->GetArgModesArray()[index].IsEmpty())
{
nArgsIN--;