]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/richmsgdlg.cpp
Add wxRibbonButtonBar::GetItem(), GetItemById() and GetItemId().
[wxWidgets.git] / src / msw / richmsgdlg.cpp
index c329f503d16e8e51fcb4047daed1db46dc7340d0..3b8aa11187d5319d96cf4612ebe3593c0b138d19 100644 (file)
 
 #include "wx/richmsgdlg.h"
 
+#ifndef WX_PRECOMP
+    #include "wx/msw/private.h"
+#endif
+
 // This will define wxHAS_MSW_TASKDIALOG if we have support for it in the
 // headers we use.
 #include "wx/msw/private/msgdlg.h"
@@ -43,14 +47,14 @@ int wxRichMessageDialog::ShowModal()
         // add a checkbox
         if ( !m_checkBoxText.empty() )
         {
-            tdc.pszVerificationText = m_checkBoxText.wx_str();
+            tdc.pszVerificationText = m_checkBoxText.t_str();
             if ( m_checkBoxValue )
                 tdc.dwFlags |= TDF_VERIFICATION_FLAG_CHECKED;
         }
 
         // add collapsible footer
         if ( !m_detailedText.empty() )
-            tdc.pszExpandedInformation = m_detailedText.wx_str();
+            tdc.pszExpandedInformation = m_detailedText.t_str();
 
         TaskDialogIndirect_t taskDialogIndirect = GetTaskDialogIndirectFunc();
         if ( !taskDialogIndirect )