summaryrefslogtreecommitdiff
path: root/vcl/generic
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2012-01-10 17:48:01 +0200
committerTor Lillqvist <tlillqvist@suse.com>2012-01-10 19:27:37 +0200
commita24a1701d027c19c23c1378a94cc00fb46f2c7d7 (patch)
tree7da852c2bc463bc85f507da7198d3fa4435bf1db /vcl/generic
parent9d0c50e81b0ebfed6c710817019ce95f6b0ba6ec (diff)
Rename weird "NetPath" term to the more descriptive "InstallationRootPath"
Diffstat (limited to 'vcl/generic')
-rw-r--r--vcl/generic/fontmanager/helper.cxx24
1 files changed, 12 insertions, 12 deletions
diff --git a/vcl/generic/fontmanager/helper.cxx b/vcl/generic/fontmanager/helper.cxx
index dc54f0880725..b35ab2418fd1 100644
--- a/vcl/generic/fontmanager/helper.cxx
+++ b/vcl/generic/fontmanager/helper.cxx
@@ -51,7 +51,7 @@ namespace psp {
OUString getOfficePath( enum whichOfficePath ePath )
{
- static OUString aNetPath;
+ static OUString aInstallationRootPath;
static OUString aUserPath;
static OUString aConfigPath;
static OUString aEmpty;
@@ -61,8 +61,8 @@ OUString getOfficePath( enum whichOfficePath ePath )
{
bOnce = true;
OUString aIni;
- Bootstrap::get( OUString( RTL_CONSTASCII_USTRINGPARAM( "BRAND_BASE_DIR" ) ), aNetPath );
- aIni = aNetPath + OUString( RTL_CONSTASCII_USTRINGPARAM( "/program/" SAL_CONFIGFILE( "bootstrap" ) ) );
+ Bootstrap::get( OUString( RTL_CONSTASCII_USTRINGPARAM( "BRAND_BASE_DIR" ) ), aInstallationRootPath );
+ aIni = aInstallationRootPath + OUString( RTL_CONSTASCII_USTRINGPARAM( "/program/" SAL_CONFIGFILE( "bootstrap" ) ) );
Bootstrap aBootstrap( aIni );
aBootstrap.getFrom( OUString( RTL_CONSTASCII_USTRINGPARAM( "CustomDataUrl" ) ), aConfigPath );
aBootstrap.getFrom( OUString( RTL_CONSTASCII_USTRINGPARAM( "UserInstallation" ) ), aUserPath );
@@ -74,11 +74,11 @@ OUString getOfficePath( enum whichOfficePath ePath )
if( osl_getSystemPathFromFileURL( aConfigPath.pData, &aSysPath.pData ) == osl_File_E_None )
aConfigPath = aSysPath;
}
- if( ! aNetPath.compareToAscii( "file://", 7 ) )
+ if( ! aInstallationRootPath.compareToAscii( "file://", 7 ) )
{
OUString aSysPath;
- if( osl_getSystemPathFromFileURL( aNetPath.pData, &aSysPath.pData ) == osl_File_E_None )
- aNetPath = aSysPath;
+ if( osl_getSystemPathFromFileURL( aInstallationRootPath.pData, &aSysPath.pData ) == osl_File_E_None )
+ aInstallationRootPath = aSysPath;
}
if( ! aUserPath.compareToAscii( "file://", 7 ) )
{
@@ -100,7 +100,7 @@ OUString getOfficePath( enum whichOfficePath ePath )
switch( ePath )
{
case ConfigPath: return aConfigPath;
- case NetPath: return aNetPath;
+ case InstallationRootPath: return aInstallationRootPath;
case UserPath: return aUserPath;
}
return aEmpty;
@@ -128,7 +128,7 @@ void psp::getPrinterPathList( std::list< OUString >& rPathList, const char* pSub
OUStringBuffer aPathBuffer( 256 );
// append net path
- aPathBuffer.append( getOfficePath( psp::NetPath ) );
+ aPathBuffer.append( getOfficePath( psp::InstallationRootPath ) );
if( aPathBuffer.getLength() )
{
aPathBuffer.appendAscii( "/share/psprint" );
@@ -206,7 +206,7 @@ OUString psp::getFontPath()
OUStringBuffer aPathBuffer( 512 );
OUString aConfigPath( getOfficePath( psp::ConfigPath ) );
- OUString aNetPath( getOfficePath( psp::NetPath ) );
+ OUString aInstallationRootPath( getOfficePath( psp::InstallationRootPath ) );
OUString aUserPath( getOfficePath( psp::UserPath ) );
if( aConfigPath.getLength() )
{
@@ -227,11 +227,11 @@ OUString psp::getFontPath()
}
if( aConfigPath.getLength() == 0 )
{
- if( aNetPath.getLength() )
+ if( aInstallationRootPath.getLength() )
{
- aPathBuffer.append( aNetPath );
+ aPathBuffer.append( aInstallationRootPath );
aPathBuffer.appendAscii( "/share/fonts/truetype;");
- aPathBuffer.append( aNetPath );
+ aPathBuffer.append( aInstallationRootPath );
aPathBuffer.appendAscii( "/share/fonts/type1;" );
}
if( aUserPath.getLength() )