Commit 1c63af32 authored by cutealien's avatar cutealien

Remove additional const (ty @AReichl for reporting).


git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@5218 dfc29bdd-3216-0410-991c-e03cc46cb475
parent f1fd00e0
......@@ -147,12 +147,12 @@ CGUIFileOpenDialog::~CGUIFileOpenDialog()
//! returns the filename of the selected file. Returns NULL, if no file was selected.
const const wchar_t* CGUIFileOpenDialog::getFileName() const
const wchar_t* CGUIFileOpenDialog::getFileName() const
{
return FileNameW.c_str();
}
const io::path& CGUIFileOpenDialog::getFileNameP() const
const io::path& CGUIFileOpenDialog::getFileNameP() const
{
return FileName;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment