diff options
-rw-r--r-- | vcl/source/gdi/CommonSalLayout.cxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/vcl/source/gdi/CommonSalLayout.cxx b/vcl/source/gdi/CommonSalLayout.cxx index cdb9b1924b0c..f4fc63fed68c 100644 --- a/vcl/source/gdi/CommonSalLayout.cxx +++ b/vcl/source/gdi/CommonSalLayout.cxx @@ -374,11 +374,6 @@ static int GetVerticalFlagsForScript(UScriptCode aScript) nFlag = GF_ROTL; break; #if 0 - /* ttb 90° */ - case USCRIPT_MONGOLIAN: - case USCRIPT_PHAGS_PA: - nFlag = ??; - break; /* ttb -90° */ case USCRIPT_ORKHON: nFlag = ??; @@ -388,6 +383,10 @@ static int GetVerticalFlagsForScript(UScriptCode aScript) nFlag = ??; break; #endif + /* ttb 90°, no extra rotation needed */ + case USCRIPT_MONGOLIAN: + case USCRIPT_PHAGS_PA: + /* horizontal scripts */ default: break; } |