public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {\r
View v = inflater.inflate(R.layout.edit_box_dialog, container, false);\r
\r
- String currentName = getArguments().getString("filename", "");\r
+ String currentName = getArguments().getString("filename");\r
+ if (currentName == null)\r
+ currentName = "";\r
\r
((Button)v.findViewById(R.id.cancel)).setOnClickListener(this);\r
((Button)v.findViewById(R.id.ok)).setOnClickListener(this);\r