aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/gfx/screenshot.h
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-06 10:59:35 +0000
committerEugene Sandulenko2010-10-12 22:29:37 +0000
commit6dcf9f0ee557e692df3c70a263ca35068ff45380 (patch)
treead705b0174fda87d448900178c688c302e8625a3 /engines/sword25/gfx/screenshot.h
parentc1b5e5acb88201910b07d20819a677ee09e64df4 (diff)
downloadscummvm-rg350-6dcf9f0ee557e692df3c70a263ca35068ff45380.tar.gz
scummvm-rg350-6dcf9f0ee557e692df3c70a263ca35068ff45380.tar.bz2
scummvm-rg350-6dcf9f0ee557e692df3c70a263ca35068ff45380.zip
SWORD25: std::string -> Common::String in gfx/
svn-id: r53218
Diffstat (limited to 'engines/sword25/gfx/screenshot.h')
-rw-r--r--engines/sword25/gfx/screenshot.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/gfx/screenshot.h b/engines/sword25/gfx/screenshot.h
index 08280a2ce3..f1e8bbde10 100644
--- a/engines/sword25/gfx/screenshot.h
+++ b/engines/sword25/gfx/screenshot.h
@@ -54,8 +54,8 @@ namespace Sword25 {
class BS_Screenshot
{
public:
- static bool SaveToFile(unsigned int Width, unsigned int Height, const std::vector<unsigned int> & Data, const std::string & Filename);
- static bool SaveThumbnailToFile(unsigned int Width, unsigned int Height, const std::vector<unsigned int> & Data, const std::string & Filename);
+ static bool SaveToFile(unsigned int Width, unsigned int Height, const std::vector<unsigned int> & Data, const Common::String & Filename);
+ static bool SaveThumbnailToFile(unsigned int Width, unsigned int Height, const std::vector<unsigned int> & Data, const Common::String & Filename);
};
} // End of namespace Sword25