Kaydet (Commit) c13d1300 authored tarafından Michael Stahl's avatar Michael Stahl

shell: loplugin:nullptr / staticanonymous / stringconstant

Change-Id: I67458301fb13601c5bf8d83c689fd861694ee460
üst 2a5a69de
......@@ -151,7 +151,9 @@ void Default::setPropertyValue(OUString const &, css::uno::Any const &)
static_cast< cppu::OWeakObject * >(this), -1);
}
static OUString xdg_user_dir_lookup (const char *type)
namespace {
OUString xdg_user_dir_lookup (const char *type)
{
char *config_home;
char *p;
......@@ -166,12 +168,12 @@ static OUString xdg_user_dir_lookup (const char *type)
if (!aSecurity.getHomeDir( aHomeDirURL ) )
{
osl::FileBase::getFileURLFromSystemPath(OUString("/tmp"), aDocumentsDirURL);
osl::FileBase::getFileURLFromSystemPath("/tmp", aDocumentsDirURL);
return aDocumentsDirURL;
}
config_home = getenv ("XDG_CONFIG_HOME");
if (config_home == NULL || config_home[0] == 0)
if (config_home == nullptr || config_home[0] == 0)
{
aConfigFileURL = aHomeDirURL + "/.config/user-dirs.dirs";
}
......@@ -250,6 +252,8 @@ static OUString xdg_user_dir_lookup (const char *type)
return aHomeDirURL + "/" + OUString::createFromAscii(type);
}
} // namespace
css::uno::Any Default::getPropertyValue(OUString const & PropertyName)
throw (
css::beans::UnknownPropertyException, css::lang::WrappedTargetException,
......
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