summaryrefslogtreecommitdiffstats
path: root/src/3rdparty
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty')
-rw-r--r--src/3rdparty/color/CColor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/3rdparty/color/CColor.cpp b/src/3rdparty/color/CColor.cpp
index 02e0ad3c..63c5bf13 100644
--- a/src/3rdparty/color/CColor.cpp
+++ b/src/3rdparty/color/CColor.cpp
@@ -473,7 +473,7 @@ unsigned char CColor::ToRGB1(float rm1, float rm2, float rh)
Q3DStudio::CString CColor::GetString() const
{
Q3DStudio::CString color;
- color.Format( _UIC( "%02X%02X%02X" ), GetRed(), GetGreen(), GetBlue());
+ color.Format( _LSTR( "%02X%02X%02X" ), GetRed(), GetGreen(), GetBlue());
return color;
}