Custom Query (3933 matches)
Results (160 - 162 of 3933)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3853 | Fixed | ArrayDisplayInternals.au3 - 6x ConsoleWrite() | ||
| Description |
In (3.3.15.4) ArrayDisplayInternals.au3 there are 6x ConsoleWrite() which shouldn't be there. Note: In 3.3.15.3 it was OK, so this is new bug. |
|||
| #3852 | Fixed | _ArrayToString -> speed optimization | ||
| Description |
StringLen($sDelim_Col) is called for each row but it should be called only once before For/Next loop. original part of code: For $i = $iStart_Row To $iEnd_Row For $j = $iStart_Col To $iEnd_Col $sRet &= $aArray[$i][$j] & $sDelim_Col Next $sRet = StringTrimRight($sRet, StringLen($sDelim_Col)) & $sDelim_Row Next Return StringTrimRight($sRet, StringLen($sDelim_Row)) optimized part of code: $iDelimColLen = StringLen($sDelim_Col) For $i = $iStart_Row To $iEnd_Row For $j = $iStart_Col To $iEnd_Col $sRet &= $aArray[$i][$j] & $sDelim_Col Next $sRet = StringTrimRight($sRet, $iDelimColLen) & $sDelim_Row Next Return StringTrimRight($sRet, StringLen($sDelim_Row)) |
|||
| #3851 | Fixed | Block Commented Includes | ||
| Description |
Block commented out include files are reported as being missing. "!->Includefile <NonExistantInclude.au3> not found." Test code: #cs #include <NonExistantInclude.au3> #CE |
|||
Note:
See TracQuery
for help on using queries.
