Fix fuckups

This commit is contained in:
Merlijn Wajer 2010-07-16 02:13:24 +02:00
parent 6e08942bed
commit f912b8fd42
2 changed files with 2 additions and 2 deletions

View File

@ -132,7 +132,7 @@ begin
GetOnlineVersion(OnlineR);
if (OnlineR <= LocalR) then
MessageDlg('Reflection Updater', 'No Reflection update' ,mtConfirmation, [mbYes],0);
MessageDlg('Reflection Updater', 'No Reflection update' ,mtConfirmation, [mbYes],0)
else
Update;
end;

View File

@ -186,7 +186,7 @@ begin
GetLocalVersion(LocalP,LocalS);
GetOnlineVersion(OnlineP,OnlineS);
if (OnlineP <= LocalP) and (OnlineS <= LocalS) then
MessageDlg('SRL Updater', 'No SRL update / Plugins update available!', mtConfirmation, [mbYes], 0);
MessageDlg('SRL Updater', 'No SRL update / Plugins update available!', mtConfirmation, [mbYes], 0)
else
Update;
end;