Fixed TCT build 20/37220/1
authorPaul Wisbey <p.wisbey@samsung.com>
Sun, 22 Mar 2015 13:14:25 +0000 (13:14 +0000)
committerPaul Wisbey <p.wisbey@samsung.com>
Sun, 22 Mar 2015 13:14:25 +0000 (13:14 +0000)
Change-Id: Ied3ee3e4758ec76f28689ac3d9556b5857f765bb

automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.cpp
automated-tests/src/dali-adaptor/dali-test-suite-utils/test-platform-abstraction.h

index cac8dd0..60de63d 100644 (file)
@@ -161,6 +161,23 @@ bool TestPlatformAbstraction::IsLoading()
 }
 
 /**
+ * @copydoc PlatformAbstraction::GetDefaultFontDescription()
+ */
+void TestPlatformAbstraction::GetDefaultFontDescription( std::string& family, std::string& style ) const
+{
+  // TODO
+}
+
+/**
+ * @copydoc PlatformAbstraction::GetDefaultFontSize()
+ */
+int TestPlatformAbstraction::GetDefaultFontSize() const
+{
+  // TODO
+  return int();
+}
+
+/**
  * @copydoc PlatformAbstraction::SetDpi()
  */
 void TestPlatformAbstraction::SetDpi (unsigned int dpiHorizontal, unsigned int dpiVertical)
index b8fddb9..80e6bd6 100644 (file)
@@ -136,6 +136,16 @@ public:
   virtual bool IsLoading();
 
   /**
+   * @copydoc PlatformAbstraction::GetDefaultFontDescription()
+   */
+  virtual void GetDefaultFontDescription( std::string& family, std::string& style ) const;
+
+  /**
+   * @copydoc PlatformAbstraction::GetDefaultFontSize()
+   */
+  virtual int GetDefaultFontSize() const;
+
+  /**
    * @copydoc PlatformAbstraction::SetDpi()
    */
   virtual void SetDpi (unsigned int dpiHorizontal, unsigned int dpiVertical);