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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-05-01 17:34:56 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-05-01 17:34:56 +0400
commit04cbb3ad149563035e6606db48040e4ef00f1762 (patch)
treee2de26a82133a1d4e22185c81a7777fbba98a83b /source/blender/freestyle/intern/application/AppCanvas.cpp
parent8843eb906388f9b014458f24bffb690a34ab4e5f (diff)
Fix for [#35116] Freestyle StringUtils::toAscii breakes non-ascii path values.
Just removed all calls of StringUtils::toAscii() as well as the function definitions.
Diffstat (limited to 'source/blender/freestyle/intern/application/AppCanvas.cpp')
-rw-r--r--source/blender/freestyle/intern/application/AppCanvas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/application/AppCanvas.cpp b/source/blender/freestyle/intern/application/AppCanvas.cpp
index e385eb76fbe..e1f300b3ce0 100644
--- a/source/blender/freestyle/intern/application/AppCanvas.cpp
+++ b/source/blender/freestyle/intern/application/AppCanvas.cpp
@@ -39,7 +39,7 @@ AppCanvas::AppCanvas()
:Canvas()
{
_pViewer = 0;
- _MapsPath = StringUtils::toAscii(Config::Path::getInstance()->getMapsDir()).c_str();
+ _MapsPath = Config::Path::getInstance()->getMapsDir().c_str();
}
AppCanvas::AppCanvas(AppView *iViewer)