aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/llpaneldisplay.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llpaneldisplay.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llpaneldisplay.cpp b/linden/indra/newview/llpaneldisplay.cpp
index 23379cf..3e60745 100644
--- a/linden/indra/newview/llpaneldisplay.cpp
+++ b/linden/indra/newview/llpaneldisplay.cpp
@@ -125,7 +125,7 @@ BOOL LLPanelDisplay::postBuild()
125 125
126 mCtrlFullScreen = getChild<LLComboBox>( "fullscreen combo"); 126 mCtrlFullScreen = getChild<LLComboBox>( "fullscreen combo");
127 127
128 LLUIString resolution_label = getUIString("resolution_format"); 128 LLUIString resolution_label = getString("resolution_format");
129 129
130 for (S32 i = 0; i < num_resolutions; i++) 130 for (S32 i = 0; i < num_resolutions; i++)
131 { 131 {
@@ -181,7 +181,7 @@ BOOL LLPanelDisplay::postBuild()
181 S32 denominator = 0; 181 S32 denominator = 0;
182 fractionFromDecimal(mAspectRatio, numerator, denominator); 182 fractionFromDecimal(mAspectRatio, numerator, denominator);
183 183
184 LLUIString aspect_ratio_text = getUIString("aspect_ratio_text"); 184 LLUIString aspect_ratio_text = getString("aspect_ratio_text");
185 if (numerator != 0) 185 if (numerator != 0)
186 { 186 {
187 aspect_ratio_text.setArg("[NUM]", llformat("%d", numerator)); 187 aspect_ratio_text.setArg("[NUM]", llformat("%d", numerator));
@@ -347,7 +347,7 @@ void LLPanelDisplay::initWindowSizeControls()
347 } 347 }
348 } 348 }
349 // ...otherwise, add a new entry with the current window height/width. 349 // ...otherwise, add a new entry with the current window height/width.
350 LLUIString resolution_label = getUIString("resolution_format"); 350 LLUIString resolution_label = getString("resolution_format");
351 resolution_label.setArg("[RES_X]", llformat("%d", width)); 351 resolution_label.setArg("[RES_X]", llformat("%d", width));
352 resolution_label.setArg("[RES_Y]", llformat("%d", height)); 352 resolution_label.setArg("[RES_Y]", llformat("%d", height));
353 mCtrlWindowSize->add(resolution_label, ADD_TOP); 353 mCtrlWindowSize->add(resolution_label, ADD_TOP);