Ignore:
Timestamp:
May 7, 2015, 12:34:29 PM (9 years ago)
Author:
healthsevak
Message:

Updating the working copy to CPRS version 28

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/VA/VAUtils.pas

    r829 r1679  
    2020                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
    2121
     22function Show508Message(Const Msg: String): TShow508MessageResult;
    2223function ShowMsg(const Msg: string; Icon: TShow508MessageIcon = smiNone;
    2324                    Buttons: TShow508MessageButton = smbOK): TShow508MessageResult; overload;
     
    281282    smiError:     Caption := ' Error';
    282283    smiQuestion:  Caption := ' Inquiry';
     284    smiInfo:      Caption := ' Information';
    283285  end;
    284286  Caption := Application.Title + Caption;
    285287  Result := ShowMsg(Msg, Caption, Icon, Buttons);
    286288end;
     289
     290function Show508Message(Const Msg: String): TShow508MessageResult;
     291begin
     292  Result := ShowMsg(msg);
     293end;
     294
    287295
    288296procedure FreeAndNilTStringsAndObjects(var Strings);
Note: See TracChangeset for help on using the changeset viewer.