summaryrefslogtreecommitdiff
path: root/src/gui/sdlfont.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-02-15 02:35:06 +0300
committerAndrei Karas <akaras@inbox.ru>2012-02-15 03:04:32 +0300
commit624b07bf0ee70794240135bb403e9dfb879749c4 (patch)
treedf6ced39a2cdd2f46c7d51747abdee168d29a146 /src/gui/sdlfont.h
parent99bc9d1fb4bccae0785d731711e3b1009de1b394 (diff)
downloadplus-624b07bf0ee70794240135bb403e9dfb879749c4.tar.gz
plus-624b07bf0ee70794240135bb403e9dfb879749c4.tar.bz2
plus-624b07bf0ee70794240135bb403e9dfb879749c4.tar.xz
plus-624b07bf0ee70794240135bb403e9dfb879749c4.zip
Add function to fix dir separator.
Diffstat (limited to 'src/gui/sdlfont.h')
-rw-r--r--src/gui/sdlfont.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/sdlfont.h b/src/gui/sdlfont.h
index 6fcad34d4..77e3761e7 100644
--- a/src/gui/sdlfont.h
+++ b/src/gui/sdlfont.h
@@ -53,14 +53,14 @@ class SDLFont : public gcn::Font
* @param filename Font filename.
* @param size Font size.
*/
- SDLFont(const std::string &filename, int size, int style = 0);
+ SDLFont(std::string filename, int size, int style = 0);
/**
* Destructor.
*/
~SDLFont();
- void loadFont(const std::string &filename, int size, int style = 0);
+ void loadFont(std::string filename, int size, int style = 0);
void createSDLTextChunk(SDLTextChunk *chunk);