[Title] Fixed bug for description output in SelectRootstrapMappingDialog
authordonghyuk.yang <donghyuk.yang@samsung.com>
Thu, 8 Nov 2012 01:12:15 +0000 (10:12 +0900)
committerdonghyuk.yang <donghyuk.yang@samsung.com>
Thu, 8 Nov 2012 01:12:15 +0000 (10:12 +0900)
org.tizen.nativeplatform/src/org/tizen/nativeplatform/views/ui/SelectRootstrapMappingDialog.java

index ad3aaf1..11c144d 100644 (file)
@@ -86,7 +86,7 @@ public class SelectRootstrapMappingDialog extends Dialog {
                composite.setLayout(new GridLayout(1, false));
                
                Label descLabel = new Label(composite, SWT.NONE);       
-               descLabel.setText(resources.getString(String.format("SelectRootDlg.Label.Desc", rootName, rootName)));
+               descLabel.setText(String.format(resources.getString("SelectRootDlg.Label.Desc"), rootName, rootName));
        }
        
        private void createSettingComposite(Composite parent) {