Fixed regression with Actor::COLOR property in TextLabel
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / multi-language-support.cpp
index 8c28dd5..87e594d 100644 (file)
@@ -49,20 +49,22 @@ MultilanguageSupport MultilanguageSupport::Get()
 }
 
 void MultilanguageSupport::SetScripts( const Vector<Character>& text,
-                                       const Vector<LineBreakInfo>& lineBreakInfo,
                                        Vector<ScriptRun>& scripts )
 {
   GetImplementation( *this ).SetScripts( text,
-                                         lineBreakInfo,
                                          scripts );
 }
 
 void MultilanguageSupport::ValidateFonts( const Vector<Character>& text,
                                           const Vector<ScriptRun>& scripts,
+                                          const Vector<FontDescriptionRun>& fontDescriptions,
+                                          FontId defaultFontId,
                                           Vector<FontRun>& fonts )
 {
   GetImplementation( *this ).ValidateFonts( text,
                                             scripts,
+                                            fontDescriptions,
+                                            defaultFontId,
                                             fonts );
 }