summaryrefslogtreecommitdiff
path: root/source/XIO.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/XIO.cpp')
-rw-r--r--source/XIO.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/XIO.cpp b/source/XIO.cpp
index ed0a5fa..d05180e 100644
--- a/source/XIO.cpp
+++ b/source/XIO.cpp
@@ -79,7 +79,7 @@ void XIO::SplitLeafName ( std::string * path, std::string * leafName )
//
// ! Must only be called after using SplitLeafName!
-void XIO::SplitFileExtension ( std::string * leafName, std::string * fileExt )
+void XIO::SplitFileExtension ( std::string * leafName, std::string * fileExt , bool lowercase )
{
fileExt->erase();
@@ -91,7 +91,7 @@ void XIO::SplitFileExtension ( std::string * leafName, std::string * fileExt )
if ( (*leafName)[extPos] == '.' ) {
fileExt->assign ( &((*leafName)[extPos+1]) );
- MakeLowerCase ( fileExt );
+ if (lowercase) MakeLowerCase ( fileExt );
leafName->erase ( extPos );
}