summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGraham Madarasz (Graham Linden) <graham@lindenlab.com>2013-09-26 10:12:33 -0700
committerGraham Madarasz (Graham Linden) <graham@lindenlab.com>2013-09-26 10:12:33 -0700
commitb8a1fd33f5e5d438eaa708ff4687215d9f1a79c8 (patch)
tree1170559a749ef6c8633b4bd07e27568619c84da4
parent4709ca96975e24e49eba00760dd840a5b026fcb9 (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-xindra/newview/llfilepicker.cpp6
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";