Include wx/bitmap.h according to precompiled headers of wx/wx.h (with other minor cleaning).

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@39710 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2006-06-14 10:02:19 +00:00
parent 15fa9a1f82
commit 0bca037363
40 changed files with 87 additions and 83 deletions

View File

@@ -1,7 +1,8 @@
/////////////////////////////////////////////////////////////////////////////
// Name: fs_mem.cpp
// Name: src/common/fs_mem.cpp
// Purpose: in-memory file system
// Author: Vaclav Slavik
// RCS-ID: $Id$
// Copyright: (c) 2000 Vaclav Slavik
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
@@ -9,24 +10,26 @@
#include "wx/wxprec.h"
#ifdef __BORLANDC__
#pragma hdrstop
#pragma hdrstop
#endif
#if wxUSE_FILESYSTEM && wxUSE_STREAMS
#include "wx/fs_mem.h"
#if wxUSE_GUI
#include "wx/image.h"
#include "wx/bitmap.h"
#endif // wxUSE_GUI
#ifndef WXPRECOMP
#include "wx/intl.h"
#include "wx/log.h"
#include "wx/hash.h"
#if wxUSE_GUI
#include "wx/bitmap.h"
#endif // wxUSE_GUI
#endif
#if wxUSE_GUI
#include "wx/image.h"
#endif // wxUSE_GUI
#include "wx/mstream.h"
class MemFSHashObj : public wxObject
@@ -172,7 +175,7 @@ bool wxMemoryFSHandlerBase::CheckHash(const wxString& filename)
/*static*/ void wxMemoryFSHandlerBase::AddFile(const wxString& filename, const wxString& textdata)
{
AddFile(filename, (const void*) textdata.mb_str(), textdata.Length());
AddFile(filename, (const void*) textdata.mb_str(), textdata.length());
}
@@ -239,4 +242,3 @@ wxMemoryFSHandler::AddFile(const wxString& filename,
#endif // wxUSE_FILESYSTEM && wxUSE_FS_ZIP