diff options
author | Graham Madarasz (Graham Linden) <graham@lindenlab.com> | 2013-09-26 10:12:33 -0700 |
---|---|---|
committer | Graham Madarasz (Graham Linden) <graham@lindenlab.com> | 2013-09-26 10:12:33 -0700 |
commit | b8a1fd33f5e5d438eaa708ff4687215d9f1a79c8 (patch) | |
tree | 1170559a749ef6c8633b4bd07e27568619c84da4 | |
parent | 4709ca96975e24e49eba00760dd840a5b026fcb9 (diff) |
Try all you want multichar constant, but you'll never be a string to me! (fix mac build errors from 'curious' filepicker literals)
-rwxr-xr-x | indra/newview/llfilepicker.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llfilepicker.cpp b/indra/newview/llfilepicker.cpp index 3fec81b627..9da8e82c49 100755 --- a/indra/newview/llfilepicker.cpp +++ b/indra/newview/llfilepicker.cpp @@ -659,9 +659,9 @@ bool LLFilePicker::doNavSaveDialog(ESaveFilter filter, const std::string& filena extension = "tga"; break; case FFSAVE_TGAPNG: - type = 'PNG'; - creator = 'prvw'; - extension = CFSTR(".png"); + type = "PNG"; + creator = "prvw"; + extension = "png"; break; case FFSAVE_BMP: type = "BMPf"; |