]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/notebmac.cpp
added xpmdecod.cpp
[wxWidgets.git] / src / mac / notebmac.cpp
index d2e96608969023106b8cab54c536640c3fb8c224..ca975252fe12ef15fd79b5b940ed4aba5542f0e2 100644 (file)
@@ -260,8 +260,12 @@ bool wxNotebook::InsertPage(int nPage,
                
                tie.version = 0 ;
                tie.iconSuiteID = 0 ;
-               strcpy( (char*) tie.name , strText ) ;
-               c2pstr( (char*) tie.name ) ;    
+#if TARGET_CARBON
+               c2pstrcpy( (StringPtr) tie.name , strText ) ;
+#else
+               strcpy( (char *) tie.name , strText ) ;
+               c2pstr( (char *) tie.name ) ;
+#endif
                SetControlData( m_macControl, nPage + 1, kControlTabInfoTag , sizeof( ControlTabInfoRec) , (char*) &tie ) ;
                SetControlData( m_macControl, m_nSelection + 1, kControlTabEnabledFlagTag, sizeof( Boolean ), (Ptr)&enabled );