]> git.saurik.com Git - wxWidgets.git/blobdiff - src/dfb/bitmap.cpp
removed wxArrayString casting hack, it doesn't work with the new wxString class
[wxWidgets.git] / src / dfb / bitmap.cpp
index 72f4fda4c04e180a13a58cb823d55a0a5ad134ed..21dffe41c9ca0bc2574a750cb6f9ddae51753628 100644 (file)
@@ -267,7 +267,7 @@ bool wxBitmap::LoadFile(const wxString &name, wxBitmapType type)
         wxImage image;
         if ( !image.LoadFile(name, type) || !image.Ok() )
         {
-            wxLogError("no bitmap handler for type %d defined.", type);
+            wxLogError(_("No bitmap handler for type %d defined."), type);
             return false;
         }
         else
@@ -301,7 +301,7 @@ bool wxBitmap::SaveFile(const wxString& filename, wxBitmapType type, const wxPal
             return image.SaveFile(filename, type);
         else
         {
-            wxLogError("no bitmap handler for type %d defined.", type);
+            wxLogError(_("No bitmap handler for type %d defined."), type);
             return false;
         }
     }