Custom Query (3910 matches)
Results (331 - 333 of 3910)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #3644 | No Bug | ArrayDisplayInternals.au3 - used magic numbers as constants | ||
| Description |
In ArrayDisplayInternals.au3 UDF are used magic numbers as constants instead of named constants as it is in other UDF include files. Example: ArrayDisplayInternals.au3 / _ArrayDisplay_SortItems() - $HDF_SORTDOWN, $HDF_SORTUP, ... ... Analogic function where it's correct: GuiListView.au3 / _GUICtrlListView_SortItems() |
|||
| #950 | No Bug | ArraySort bug in some cases | ||
| Description |
Hello. Environment = 3.3.0.0 under WIN_XP/Service Pack 3 X86 Actually I do not know how to explain this in proper english. I think my example will do this better than me: #Include <Array.au3> $aArray[0][0] = 'a' $aArray[0][1] = '15' $aArray[1][0] = 'b' $aArray[1][1] = '21' $aArray[2][0] = 'c' $aArray[2][1] = '111' $aArray[3][0] = 'd' $aArray[3][1] = '3' $aArray[4][0] = 'e' $aArray[4][1] = '1' $aArray[5][0] = 'f' $aArray[5][1] = '2' _ArrayDisplay($aArray, 'RAW') _ArraySort($aArray, 1, 0, 0, 1) _ArrayDisplay($aArray, 'Sorted Descending by Col 1') $aArray[0][1] = 'a' $aArray[0][0] = '15' $aArray[1][1] = 'b' $aArray[1][0] = '21' $aArray[2][1] = 'c' $aArray[2][0] = '111' $aArray[3][1] = 'd' $aArray[3][0] = '3' $aArray[4][1] = 'e' $aArray[4][0] = '1' $aArray[5][1] = 'f' $aArray[5][0] = '2' _ArrayDisplay($aArray, 'RAW') _ArraySort($aArray, 0, 0, 0, 0) _ArrayDisplay($aArray, 'Sorted Ascending by Col 0') Is this a bug? Best regards, timsky |
|||
| #3080 | Rejected | ArraySwap: Parameters clarification | ||
| Description |
Existing: $iStart [optional] Index in row/column to start swap (2D array only) $iEnd [optional] Index in row/column to end swap (2D array only) Suggested: $iStart [optional] Index in column/row to start swap (2D array only) $iEnd [optional] Index in column/row to end swap (2D array only) Reason: clarification |
|||
