]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/memory.cpp
move ScrollWindow() implementation to the base class and call private DoScrollHorz...
[wxWidgets.git] / src / common / memory.cpp
index e141d7a766a6b64e16bf384cfcda9c443ed0ac06..a1728fca676a91280524a0f18133815d2aea0306 100644 (file)
@@ -593,8 +593,8 @@ bool wxDebugContext::Dump(void)
     if (wxTheApp)
     {
         appNameStr = wxTheApp->GetAppName();
     if (wxTheApp)
     {
         appNameStr = wxTheApp->GetAppName();
-        appName = appNameStr;
-        OutputDumpLine(wxT("----- Memory dump of %s at %s -----"), appName, (const wxChar *)wxNow() );
+        appName = appNameStr.c_str();
+        OutputDumpLine(wxT("----- Memory dump of %s at %s -----"), appName, static_cast<const wxChar *>(wxNow().c_str()));
     }
     else
     {
     }
     else
     {
@@ -649,8 +649,8 @@ bool wxDebugContext::PrintStatistics(bool detailed)
     if (wxTheApp)
     {
         appNameStr = wxTheApp->GetAppName();
     if (wxTheApp)
     {
         appNameStr = wxTheApp->GetAppName();
-        appName = appNameStr;
-        OutputDumpLine(wxT("----- Memory statistics of %s at %s -----"), appName, (const wxChar *) wxNow() );
+        appName = appNameStr.c_str();
+        OutputDumpLine(wxT("----- Memory statistics of %s at %s -----"), appName, static_cast<const wxChar *>(wxNow().c_str()));
     }
     else
     {
     }
     else
     {
@@ -743,7 +743,7 @@ bool wxDebugContext::PrintClasses(void)
     if (wxTheApp)
     {
         appNameStr = wxTheApp->GetAppName();
     if (wxTheApp)
     {
         appNameStr = wxTheApp->GetAppName();
-        appName = appNameStr;
+        appName = appNameStr.c_str();
         wxLogMessage(wxT("----- Classes in %s -----"), appName);
     }
   }
         wxLogMessage(wxT("----- Classes in %s -----"), appName);
     }
   }