diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-01-16 09:03:09 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-01-16 10:21:57 +0000 |
commit | 27951fd37d9a4b506adacb3c12395e7504422a14 (patch) | |
tree | 0dfb47e116b21a870d81080bf2f3701bea1ebaa3 /tools | |
parent | 1ac9ccfbb696759efdbe426e6954495db870a000 (diff) |
SEARCH_PATH_DELIMITER is the same as SAL_PATHSEPARATOR
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/rc/resmgr.cxx | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/tools/source/rc/resmgr.cxx b/tools/source/rc/resmgr.cxx index 68c8b4c19fc3..98605860ad9a 100644 --- a/tools/source/rc/resmgr.cxx +++ b/tools/source/rc/resmgr.cxx @@ -56,12 +56,6 @@ #include <list> #include <set> -#ifdef UNX -#define SEARCH_PATH_DELIMITER ':' -#else -#define SEARCH_PATH_DELIMITER ';' -#endif - using ::rtl::OUString; using ::rtl::OString; using ::rtl::OUStringBuffer; @@ -209,7 +203,7 @@ void ResMgrContainer::init() 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() ) { OUString aFileURL; |