]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/msgdlg.cpp
Fixed '_' chars that were not quoted with a '\'
[wxWidgets.git] / src / mac / msgdlg.cpp
index 064d9bbba6076aa4a82ad3e515eadc4f0e06e217..20186c5ecfe0415a77281e5fd3847e67793937ca 100644 (file)
@@ -15,6 +15,7 @@
 
 #include "wx/app.h"
 #include "wx/msgdlg.h"
+#include "wx/intl.h"
 #include "wx/mac/uma.h"
 
 #if !USE_SHARED_LIBRARY
@@ -29,6 +30,7 @@ IMPLEMENT_CLASS(wxMessageDialog, wxDialog)
 
 short language = 0 ;
 
+void wxMacConvertNewlines( const char *source , char * destination ) ;
 void wxMacConvertNewlines( const char *source , char * destination )
 {
        const char *s = source ;
@@ -73,35 +75,25 @@ int wxMessageDialog::ShowModal()
        Str255 pascalTitle ;
        Str255 pascalText ;
        char   cText[256] ;
+
+       Str255 yesPString ;
+       Str255 noPString ;
+       
+       wxMacStringToPascal( m_caption , pascalTitle ) ;
+       wxMacStringToPascal( _("Yes") , yesPString ) ;
+       wxMacStringToPascal(  _("No") , noPString ) ;
        
        if (wxApp::s_macDefaultEncodingIsPC)
        {
-#if TARGET_CARBON
-               c2pstrcpy( (StringPtr) pascalTitle , wxMacMakeMacStringFromPC( m_caption ) ) ;
-#else
-               strcpy( (char *) pascalTitle , wxMacMakeMacStringFromPC( m_caption ) ) ;
-               c2pstr( (char *) pascalTitle ) ;
-#endif
                strcpy(cText , wxMacMakeMacStringFromPC( m_message) ) ;
        }
        else
        {
-#if TARGET_CARBON
-               c2pstrcpy( (StringPtr) pascalTitle , m_caption ) ;
-#else
-               strcpy( (char *) pascalTitle , m_caption ) ;
-               c2pstr( (char *) pascalTitle ) ;
-#endif
                strcpy( cText , m_message ) ;
        }
 
        wxMacConvertNewlines( cText , cText ) ;
-#if TARGET_CARBON
-       c2pstrcpy( (StringPtr) pascalText , cText ) ;
-#else
-       strcpy( (char *) pascalText , cText ) ;
-       c2pstr( (char *) pascalText ) ;
-#endif
+       CopyCStringToPascal( cText , pascalText ) ;
 
        wxASSERT_MSG( ( m_dialogStyle & 0x3F ) != wxYES , "this style is not supported on mac" ) ;
 
@@ -193,18 +185,18 @@ int wxMessageDialog::ShowModal()
          {
            if (m_dialogStyle & wxCANCEL)
            {
-                               param.defaultText       = "\pYes" ;
+                               param.defaultText       = yesPString ;
                                param.cancelText        = (StringPtr) kAlertDefaultCancelText;
-                               param.otherText         = "\pNo";
+                               param.otherText         = noPString ;
                                param.helpButton        = false ;
                                param.defaultButton = kAlertStdAlertOKButton;
                                param.cancelButton      = kAlertStdAlertCancelButton;
            }
            else
            {
-                               param.defaultText       = "\pYes" ;
+                               param.defaultText       = yesPString ;
                                param.cancelText        = NULL;
-                               param.otherText         = "\pNo";
+                               param.otherText         = noPString ;
                                param.helpButton        = false ;
                                param.defaultButton = kAlertStdAlertOKButton;
                                param.cancelButton      = 0;