change internal mathod name
authorSungyeon Woo <s.woo@samsung.com>
Tue, 26 Mar 2013 08:23:33 +0000 (17:23 +0900)
committerwoo <s-w.woo@samsung.com>
Wed, 27 Mar 2013 04:27:45 +0000 (13:27 +0900)
Change-Id: I63f346336f1e78355954a2050083d4a93c37b849
Signed-off-by: Sungyeon Woo <s.woo@samsung.com>
src/graphics/FGrp_CanvasImpl.cpp
src/graphics/FGrp_FontImpl.cpp
src/graphics/FGrp_FontUtil.h

index b05fdd0..427c24f 100755 (executable)
@@ -47,7 +47,7 @@ using namespace Tizen::Base::Collection;
 
 #define EXTRACT_CANVASEX(pVar, canvas)          Tizen::Graphics::_Canvas * pVar = canvas._pNativeCanvas
 #define EXTRACT_BITMAPEX(pVar, bitmap)          Tizen::Graphics::_Bitmap * pVar = Tizen::Graphics::_GetBitmapEx(bitmap)
-#define EXTRACT_FONTEX(pVar, font)              Tizen::Graphics::_Font * pVar = Tizen::Graphics::GetFontEx(font)
+#define EXTRACT_FONTEX(pVar, font)              Tizen::Graphics::_Font * pVar = Tizen::Graphics::_GetFontEx(font)
 #define EXTRACT_SCALED_BITMAPEX(pVar, bitmap)   Tizen::Graphics::_Bitmap * pVar = Tizen::Graphics::_GetScaledBitmapEx(bitmap)
 
 #define IsSucceeded(X)          (!IsFailed(X))
index 58e76a5..69412a3 100644 (file)
@@ -819,7 +819,7 @@ namespace Tizen { namespace Graphics
 {
        _OSP_EXPORT_ bool _TestGetTextExtentList(Tizen::Graphics::Font& font, const Tizen::Base::String& string, std::vector<std::pair<int, int> >& outList)
        {
-               _Font* pInternalFont = GetFontEx(font);
+               _Font* pInternalFont = _GetFontEx(font);
                _Util::String text(string.GetPointer(), string.GetLength());
                _Util::AccumList<_Util::Pair<int, int> > outAccumList;
 
index cada4bd..efddede 100644 (file)
@@ -44,17 +44,17 @@ public:
 };
 
 inline _Font*
-GetFontEx(const Tizen::Graphics::_FontImpl& font)
+_GetFontEx(const Tizen::Graphics::_FontImpl& font)
 {
        const _FontImplHack* pFontImplHack = static_cast <const _FontImplHack*>(&font);
        return (pFontImplHack) ? pFontImplHack->GetFontEx() : null;
 }
 
 inline _Font*
-GetFontEx(const Tizen::Graphics::Font& font)
+_GetFontEx(const Tizen::Graphics::Font& font)
 {
        const _FontImpl* pFontImpl = _FontImpl::GetInstance(font);
-       return (pFontImpl) ? GetFontEx(*pFontImpl) : null;
+       return (pFontImpl) ? _GetFontEx(*pFontImpl) : null;
 }
 
 }} // Tizen::Graphics