- HH_POPUP popup;
- popup.cbStruct = sizeof(popup);
- popup.hinst = (HINSTANCE) wxGetInstance();
- popup.idString = 0 ;
- popup.pt.x = pos.x; popup.pt.y = pos.y;
- popup.clrForeground = (COLORREF)-1;
- popup.clrBackground = (COLORREF)-1;
- popup.rcMargins.top = popup.rcMargins.left = popup.rcMargins.right = popup.rcMargins.bottom = -1;
- popup.pszFont = NULL;
- popup.pszText = (const wxChar*) text;
-
- return CallHtmlHelpFunction(window, NULL, HH_DISPLAY_TEXT_POPUP,
- wxPtrToUInt(&popup));
+ return DoDisplayTextPopup(text.wx_str(), pos, 0, window);