Ignore:
Timestamp:
Mar 3, 2007, 8:16:21 PM (18 years ago)
Author:
RBRi
Message:

again small refactoring

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/NewView/MainForm.pas

    r82 r92  
    54735473  else if StrLeft( LinkString, 3 ) = 'url' then
    54745474  begin
    5475     URL := StrRightFrom( LinkString, 5 );
    5476     LaunchURL( URL );
    5477     SetStatus( 'Opened '
    5478                + URL );
     5475    URL := StrRightFrom(LinkString, 5);
     5476
     5477    try
     5478      LaunchURL(URL);
     5479    except
     5480      on E:Exception do
     5481      begin
     5482        DoErrorDlg('Error', E.Message);
     5483      end;
     5484      else raise;
     5485    end;
     5486
     5487    SetStatus('Opened ' + URL );
    54795488  end
    54805489  else if StrLeft( LinkString, 8 ) = 'external' then
Note: See TracChangeset for help on using the changeset viewer.