Make DolphinWX/ mostly IWYU clean.

This commit is contained in:
Pierre Bourdon
2014-02-22 23:36:30 +01:00
parent c698c07755
commit f344a43657
92 changed files with 1511 additions and 344 deletions

View File

@ -7,6 +7,11 @@
#include <string>
#include <wx/string.h>
class wxBitmap;
// A shortcut to access the bitmaps
#define wxGetBitmapFromMemory(name) WxUtils::_wxGetBitmapFromMemory(name, sizeof(name))
namespace WxUtils
{
@ -18,6 +23,8 @@ void Explore(const char *path);
double GetCurrentBitmapLogicalScale();
wxBitmap _wxGetBitmapFromMemory(const unsigned char* data, int length);
} // namespace
std::string WxStrToStr(const wxString& str);