| # | Line 73 | Line 73 | begin | |
|---|---|---|
| 73 | if Length(ExportHandlers) > 0 then | |
| 74 | for i := 0 to High(ExportHandlers) do | |
| 75 | if ExportHandlers[i].Ext = fileinfo.Extension then | |
| 76 | < | ExportHandlers[i].Handler(ConnectionID, FileID, filename); |
| 76 | > | Result := ExportHandlers[i].Handler(ConnectionID, FileID, filename); |
| 77 | end; | |
| 78 | ||
| 79 | ||
| # | Line 224 | Line 224 | begin | |
| 224 | ||
| 225 | img := TOniImage.Create; | |
| 226 | img.Load(ConnectionID, FileID); | |
| 227 | < | img.WriteToBMP(filename+'.bmp'); |
| 227 | > | img.WriteToFile(filename+'.bmp'); |
| 228 | img.Free; | |
| 229 | end; | |
| 230 | ||
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |