+ const wxString& title = dialog->GetTitle();
+ if ( !title.empty() )
+ ::SetWindowText(hwnd, title.wx_str());
+
+ wxPoint pos = dialog->GetPosition();
+ if ( pos != wxDefaultPosition )
+ {
+ ::SetWindowPos(hwnd, NULL /* Z-order: ignored */,
+ pos.x, pos.y, -1, -1,
+ SWP_NOSIZE | SWP_NOZORDER);
+ }