| 62 | //--------------------------------------------------------------------------- |
| 63 | |
| 64 | void __fastcall TPreferences_LanguageF::FormResize(TObject *Sender) |
| 65 | { |
| 66 | Grille->Width=ClientWidth-Grille->Left; |
| 67 | Grille->Height=ClientHeight-Grille->Top; //Why 40? I don't know! |
| 68 | Grille->ColWidths[0]=Grille->Width*1/7; |
| 69 | Grille->ColWidths[1]=Grille->Width*3/7; |
| 70 | Grille->ColWidths[2]=Grille->Width*3/7; |
| 71 | OK->Left=ClientWidth-OK->Width; |
| 72 | Cancel->Left=OK->Left-Cancel->Width; |
| 73 | } |
| 74 | |
| 75 | //*************************************************************************** |
| 76 | // C++ |
nothing calls this directly
no outgoing calls
no test coverage detected