---------------------------------------------------------------------------
| 38 | } |
| 39 | //--------------------------------------------------------------------------- |
| 40 | void __fastcall TStringGridLivingColumns::MouseUp(TObject *Sender, TMouseButton Button, |
| 41 | TShiftState Shift, int X, int Y) |
| 42 | { |
| 43 | if( Button == mbLeft ) |
| 44 | { |
| 45 | // ������� ����� ������� �� ��������� |
| 46 | for(int i=0, c=SG->ColCount; i<c; i++) |
| 47 | if( SG->ColWidths[i] < MinColumnWidth ) |
| 48 | SG->ColWidths[i] = MinColumnWidth; |
| 49 | |
| 50 | SaveColumnKoeff(); |
| 51 | } |
| 52 | if( oldOnMouseUp ) |
| 53 | oldOnMouseUp(Sender, Button, Shift, X, Y); |
| 54 | } |
| 55 | //--------------------------------------------------------------------------- |
| 56 | int __fastcall TStringGridLivingColumns::GetAllColumnsWidth(void) |
| 57 | { |
nothing calls this directly
no outgoing calls
no test coverage detected