Conversão com StrToDateTime e TFormatSettings não funciona

Este código deve funcionar no Delphi XE2, mas dá erro "não é uma data e hora válidas" na conversão StrtoDateTime:

procedure TForm2.Button1Click(Sender: TObject);
var
  s: string;
  d: TDateTime;
  FmtStngs: TFormatSettings;
begin
    GetLocaleFormatSettings(GetThreadLocale, FmtStngs);
    FmtStngs.DateSeparator := #32;
    FmtStngs.ShortDateFormat := 'dd mmm yyyy';
    FmtStngs.TimeSeparator := ':';
    FmtStngs.LongTimeFormat := 'hh:nn';

    s := FormatDateTime('', Now, FmtStngs);
    d := StrToDateTime(s, FmtStngs);
end;

Alguma dica?

questionAnswers(2)

yourAnswerToTheQuestion