Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/freestyle/intern/application/AppConfig.cpp')
-rw-r--r--source/blender/freestyle/intern/application/AppConfig.cpp13
1 files changed, 6 insertions, 7 deletions
diff --git a/source/blender/freestyle/intern/application/AppConfig.cpp b/source/blender/freestyle/intern/application/AppConfig.cpp
index c8ebc45d7eb..2500c9c68ee 100644
--- a/source/blender/freestyle/intern/application/AppConfig.cpp
+++ b/source/blender/freestyle/intern/application/AppConfig.cpp
@@ -42,7 +42,7 @@ extern "C" {
namespace Config {
-Path* Path::_pInstance = 0;
+Path *Path::_pInstance = 0;
Path::Path()
{
// get the root directory
@@ -80,7 +80,7 @@ Path::~Path()
_pInstance = 0;
}
-Path* Path::getInstance()
+Path *Path::getInstance()
{
return _pInstance;
}
@@ -89,11 +89,10 @@ string Path::getEnvVar(const string& iEnvVarName)
{
string value;
if (!getenv(StringUtils::toAscii(iEnvVarName).c_str())) {
- cerr << "Warning: You may want to set the $"
- << StringUtils::toAscii(iEnvVarName)
- << " environment variable to use Freestyle." << endl
- << " Otherwise, the current directory will be used instead."
- << endl;
+ cerr << "Warning: You may want to set the $" <<
+ StringUtils::toAscii(iEnvVarName) <<
+ " environment variable to use Freestyle." << endl <<
+ " Otherwise, the current directory will be used instead." << endl;
value = ".";
}
else {