Kaydet (Commit) 27951fd3 authored tarafından Caolán McNamara's avatar Caolán McNamara

SEARCH_PATH_DELIMITER is the same as SAL_PATHSEPARATOR

üst 1ac9ccfb
...@@ -56,12 +56,6 @@ ...@@ -56,12 +56,6 @@
#include <list> #include <list>
#include <set> #include <set>
#ifdef UNX
#define SEARCH_PATH_DELIMITER ':'
#else
#define SEARCH_PATH_DELIMITER ';'
#endif
using ::rtl::OUString; using ::rtl::OUString;
using ::rtl::OString; using ::rtl::OString;
using ::rtl::OUStringBuffer; using ::rtl::OUStringBuffer;
...@@ -209,7 +203,7 @@ void ResMgrContainer::init() ...@@ -209,7 +203,7 @@ void ResMgrContainer::init()
nIndex = 0; nIndex = 0;
while( nIndex >= 0 ) while( nIndex >= 0 )
{ {
OUString aPathElement( aEnvPath.getToken( 0, SEARCH_PATH_DELIMITER, nIndex ) ); OUString aPathElement( aEnvPath.getToken( 0, SAL_PATHSEPARATOR, nIndex ) );
if( aPathElement.getLength() ) if( aPathElement.getLength() )
{ {
OUString aFileURL; OUString aFileURL;
......
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